From 7671d04cac0237f66c9e32261a40e3b258d79038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 13 Aug 2016 13:49:27 -0700 Subject: [PATCH] Updated docs. --- include/bgfx/bgfx.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/include/bgfx/bgfx.h b/include/bgfx/bgfx.h index 174f8d22b..593fdcd85 100644 --- a/include/bgfx/bgfx.h +++ b/include/bgfx/bgfx.h @@ -1102,7 +1102,13 @@ namespace bgfx /// void dbgTextClear(uint8_t _attr = 0, bool _small = false); - /// Print into internal debug text buffer. + /// Print into internal debug text character-buffer. + /// + /// @param[in] _x X position from top-left. + /// @param[in] _y Y 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. + /// @param[in] _format `printf` style format. /// /// @attention C99 equivalent is `bgfx_dbg_text_printf`. ///