Skip to content

Commit

Permalink
docs: Set group for RDPQ modules to rdpq
Browse files Browse the repository at this point in the history
  • Loading branch information
thekovic authored and rasky committed Oct 27, 2024
1 parent afbb7ae commit 0e94de2
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion include/rdpq_attach.h
Original file line number Diff line number Diff line change
@@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion include/rdpq_debug.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq_debug.h
* @brief RDP Command queue: debugging helpers
* @ingroup rdp
* @ingroup rdpq
*/

#ifndef LIBDRAGON_RDPQ_DEBUG_H
Expand Down
2 changes: 1 addition & 1 deletion include/rdpq_macros.h
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion include/rdpq_mode.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq.c
* @brief RDP Command queue
* @ingroup rdp
* @ingroup rdpq
*
* # RDP Queue: implementation details
*
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_attach.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq_attach.c
* @brief RDP Command queue: surface attachment API
* @ingroup rdp
* @ingroup rdpq
*/

#include "rdpq.h"
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_debug.c
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_internal.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq_internal.h
* @brief RDP Command queue: internal functions
* @ingroup rdp
* @ingroup rdpq
*/

#ifndef __LIBDRAGON_RDPQ_INTERNAL_H
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_mode.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq_mode.c
* @brief RDP Command queue: mode setting
* @ingroup rdp
* @ingroup rdpq
*/

#include "rdpq_mode.h"
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_rect.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq.h
* @brief RDP Command queue
* @ingroup rdp
* @ingroup rdpq
*
*/

Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_sprite.c
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_tex.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @file rdpq_tex.c
* @brief RDP Command queue: texture loading
* @ingroup rdp
* @ingroup rdpq
*/

///@cond
Expand Down
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_tri.c
Original file line number Diff line number Diff line change
@@ -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.
*
Expand Down

0 comments on commit 0e94de2

Please sign in to comment.