Skip to content

Commit

Permalink
Fixed Doxygen warnings (#3330)
Browse files Browse the repository at this point in the history
  • Loading branch information
simsaens authored Jul 28, 2024
1 parent b4df15f commit 0de1f03
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions include/bgfx/bgfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ namespace bgfx
uint32_t numCompute; //!< Number of compute calls submitted.
uint32_t numBlit; //!< Number of blit calls submitted.
uint32_t maxGpuLatency; //!< GPU driver latency.
uint32_t gpuFrameNum; //<! Frame which generated gpuTimeBegin, gpuTimeEnd.
uint32_t gpuFrameNum; //!< Frame which generated gpuTimeBegin, gpuTimeEnd.

uint16_t numDynamicIndexBuffers; //!< Number of used dynamic index buffers.
uint16_t numDynamicVertexBuffers; //!< Number of used dynamic vertex buffers.
Expand Down Expand Up @@ -2006,7 +2006,7 @@ namespace bgfx
/// Returns supported backend API renderers.
///
/// @param[in] _max Maximum number of elements in _enum array.
/// @param[inout] _enum Array where supported renderers will be written.
/// @param[in,out] _enum Array where supported renderers will be written.
///
/// @returns Number of supported renderers.
///
Expand Down Expand Up @@ -2192,7 +2192,8 @@ namespace bgfx

/// Print into internal debug text character-buffer (VGA-compatible text mode).
///
/// @param[in] _x, _y 2D position from top-left.
/// @param[in] _x The X coordinate (2D position from top-left)
/// @param[in] _y The Y coordinate (2D position from top-left)
/// @param[in] _attr Color palette. Where top 4-bits represent index of background, and bottom
/// 4-bits represent foreground color from standard VGA text palette (ANSI escape codes).
/// @param[in] _format `printf` style format.
Expand All @@ -2209,7 +2210,8 @@ namespace bgfx

/// Print into internal debug text character-buffer (VGA-compatible text mode).
///
/// @param[in] _x, _y 2D position from top-left.
/// @param[in] _x The X coordinate (2D position from top-left)
/// @param[in] _y The Y coordinate (2D position from top-left)
/// @param[in] _attr Color palette. Where top 4-bits represent index of background, and bottom
/// 4-bits represent foreground color from standard VGA text palette (ANSI escape codes).
/// @param[in] _format `printf` style format.
Expand All @@ -2227,8 +2229,10 @@ namespace bgfx

/// Draw image into internal debug text buffer.
///
/// @param[in] _x, _y 2D position from top-left.
/// @param[in] _width, _height Image width and height.
/// @param[in] _x The X coordinate (2D position from top-left)
/// @param[in] _y The Y coordinate (2D position from top-left)
/// @param[in] _width Image width
/// @param[in] _height Image height
/// @param[in] _data Raw image data (character/attribute raw encoding).
/// @param[in] _pitch Image pitch in bytes.
///
Expand Down Expand Up @@ -3314,7 +3318,10 @@ namespace bgfx
/// Set palette color value.
///
/// @param[in] _index Index into palette.
/// @param[in] _r, _g, _b, _a RGBA floating point values.
/// @param[in] _r Red value (RGBA floating point values)
/// @param[in] _g Green value (RGBA floating point values)
/// @param[in] _b Blue value (RGBA floating point values)
/// @param[in] _a Alpha value (RGBA floating point values)
///
/// @attention C99's equivalent binding is `bgfx_set_palette_color`.
///
Expand Down

0 comments on commit 0de1f03

Please sign in to comment.