diff --git a/include/rdpq_attach.h b/include/rdpq_attach.h index 4cd1c3f30..3b2bd494a 100644 --- a/include/rdpq_attach.h +++ b/include/rdpq_attach.h @@ -1,7 +1,7 @@ /** * @file rdpq_attach.h * @brief RDP Command queue: surface attachment API - * @ingroup rdp + * @ingroup rdpq * * This module implements a higher level API for attaching surfaces to the RDP. * diff --git a/include/rdpq_debug.h b/include/rdpq_debug.h index 16c06ac6e..386ddca24 100644 --- a/include/rdpq_debug.h +++ b/include/rdpq_debug.h @@ -1,7 +1,7 @@ /** * @file rdpq_debug.h * @brief RDP Command queue: debugging helpers - * @ingroup rdp + * @ingroup rdpq */ #ifndef LIBDRAGON_RDPQ_DEBUG_H diff --git a/include/rdpq_macros.h b/include/rdpq_macros.h index 58a7f9982..7cf404e9f 100644 --- a/include/rdpq_macros.h +++ b/include/rdpq_macros.h @@ -1,7 +1,7 @@ /** * @file rdpq_macros.h * @brief RDP command macros - * @ingroup rdp + * @ingroup rdpq * * This file contains macros that can be used to assembly some complex RDP commands: * the blender and the color combiner configurations. diff --git a/include/rdpq_mode.h b/include/rdpq_mode.h index 10baacfda..b61cbb9ed 100644 --- a/include/rdpq_mode.h +++ b/include/rdpq_mode.h @@ -1,7 +1,7 @@ /** * @file rdpq_mode.h * @brief RDP Command queue: mode setting - * @ingroup rdp + * @ingroup rdpq * * The mode API is a high level API to simplify mode setting with RDP. Configuring * render modes is possibly the most complex task with RDP programming, as the RDP diff --git a/src/rdpq/rdpq.c b/src/rdpq/rdpq.c index ac7958245..075697992 100644 --- a/src/rdpq/rdpq.c +++ b/src/rdpq/rdpq.c @@ -1,7 +1,7 @@ /** * @file rdpq.c * @brief RDP Command queue - * @ingroup rdp + * @ingroup rdpq * * # RDP Queue: implementation details * diff --git a/src/rdpq/rdpq_attach.c b/src/rdpq/rdpq_attach.c index cd1e59b78..571fb027e 100644 --- a/src/rdpq/rdpq_attach.c +++ b/src/rdpq/rdpq_attach.c @@ -1,7 +1,7 @@ /** * @file rdpq_attach.c * @brief RDP Command queue: surface attachment API - * @ingroup rdp + * @ingroup rdpq */ #include "rdpq.h" diff --git a/src/rdpq/rdpq_debug.c b/src/rdpq/rdpq_debug.c index ba2dc4975..8785429a1 100644 --- a/src/rdpq/rdpq_debug.c +++ b/src/rdpq/rdpq_debug.c @@ -1,7 +1,7 @@ /** * @file rdpq_debug.c * @brief RDP Command queue: debugging helpers - * @ingroup rdp + * @ingroup rdpq */ #include "rdpq_debug.h" #include "rdpq_debug_internal.h" diff --git a/src/rdpq/rdpq_internal.h b/src/rdpq/rdpq_internal.h index 3685d2d6e..facef7cb3 100644 --- a/src/rdpq/rdpq_internal.h +++ b/src/rdpq/rdpq_internal.h @@ -1,7 +1,7 @@ /** * @file rdpq_internal.h * @brief RDP Command queue: internal functions - * @ingroup rdp + * @ingroup rdpq */ #ifndef __LIBDRAGON_RDPQ_INTERNAL_H diff --git a/src/rdpq/rdpq_mode.c b/src/rdpq/rdpq_mode.c index 3d7db38be..7e9eb5e04 100644 --- a/src/rdpq/rdpq_mode.c +++ b/src/rdpq/rdpq_mode.c @@ -1,7 +1,7 @@ /** * @file rdpq_mode.c * @brief RDP Command queue: mode setting - * @ingroup rdp + * @ingroup rdpq */ #include "rdpq_mode.h" diff --git a/src/rdpq/rdpq_rect.c b/src/rdpq/rdpq_rect.c index 9a3d10aa3..57aa5e09a 100644 --- a/src/rdpq/rdpq_rect.c +++ b/src/rdpq/rdpq_rect.c @@ -1,7 +1,7 @@ /** * @file rdpq.h * @brief RDP Command queue - * @ingroup rdp + * @ingroup rdpq * */ diff --git a/src/rdpq/rdpq_sprite.c b/src/rdpq/rdpq_sprite.c index 8d73ad7c8..e7eaf08d8 100644 --- a/src/rdpq/rdpq_sprite.c +++ b/src/rdpq/rdpq_sprite.c @@ -1,7 +1,7 @@ /** * @file rdpq_sprite.c * @brief RDP Command queue: high-level sprite loading and blitting - * @ingroup rdp + * @ingroup rdpq */ #include "rspq.h" diff --git a/src/rdpq/rdpq_tex.c b/src/rdpq/rdpq_tex.c index f8b14539a..d939b7a0e 100644 --- a/src/rdpq/rdpq_tex.c +++ b/src/rdpq/rdpq_tex.c @@ -1,7 +1,7 @@ /** * @file rdpq_tex.c * @brief RDP Command queue: texture loading - * @ingroup rdp + * @ingroup rdpq */ ///@cond diff --git a/src/rdpq/rdpq_tri.c b/src/rdpq/rdpq_tri.c index feed14112..13e0009dc 100644 --- a/src/rdpq/rdpq_tri.c +++ b/src/rdpq/rdpq_tri.c @@ -1,7 +1,7 @@ /** * @file rdpq_tri.c * @brief RDP Command queue: triangle drawing routine - * @ingroup rdp + * @ingroup rdpq * * This file contains the implementation of a single function: #rdpq_triangle. *