Fix API documentation bugs

This commit is contained in:
Chris Thrasher 2024-05-02 16:42:30 -06:00
parent 59447dd8e5
commit b7c526efc2
2 changed files with 4 additions and 5 deletions

View File

@ -109,7 +109,7 @@ public:
/// The specified value is truncated to the bit width of
/// the current stencil buffer.
///
/// \param value Stencil value to clear to
/// \param stencilValue Stencil value to clear to
///
////////////////////////////////////////////////////////////
void clearStencil(StencilValue stencilValue);
@ -120,8 +120,8 @@ public:
/// The specified stencil value is truncated to the bit
/// width of the current stencil buffer.
///
/// \param color Fill color to use to clear the render target
/// \param value Stencil value to clear to
/// \param color Fill color to use to clear the render target
/// \param stencilValue Stencil value to clear to
///
////////////////////////////////////////////////////////////
void clear(const Color& color, StencilValue stencilValue);

View File

@ -171,8 +171,7 @@ public:
/// to bother with it.
///
/// \param settings Creation parameters
/// \param width Back buffer width
/// \param height Back buffer height
/// \param size Back buffer size
///
////////////////////////////////////////////////////////////
Context(const ContextSettings& settings, const Vector2u& size);