diff --git a/nx/include/switch/gfx/gfx.h b/nx/include/switch/gfx/gfx.h index 2dc42e9a..f8968b6c 100644 --- a/nx/include/switch/gfx/gfx.h +++ b/nx/include/switch/gfx/gfx.h @@ -17,9 +17,9 @@ /// GfxMode set by \ref gfxSetMode. The default is GfxMode_LinearDouble. Note that the text-console (see console.h) sets this to GfxMode_TiledSingle. typedef enum { - GfxMode_TiledSingle, /// Single-buffering with raw tiled (block-linear) framebuffer. - GfxMode_TiledDouble, /// Double-buffering with raw tiled (block-linear) framebuffer. - GfxMode_LinearDouble /// Double-buffering with linear framebuffer, which is transferred to the actual framebuffer by \ref gfxFlushBuffers(). + GfxMode_TiledSingle, ///< Single-buffering with raw tiled (block-linear) framebuffer. + GfxMode_TiledDouble, ///< Double-buffering with raw tiled (block-linear) framebuffer. + GfxMode_LinearDouble ///< Double-buffering with linear framebuffer, which is transferred to the actual framebuffer by \ref gfxFlushBuffers(). } GfxMode; /**