pub unsafe extern "C" fn bgfx_dbg_text_printf(
    _x: u16,
    _y: u16,
    _attr: u8,
    _format: *const c_char
    ...
)
Expand description

Print formatted data to internal debug text character-buffer (VGA-compatible text mode).

@param[in] _x Position x from the left corner of the window. @param[in] _y Position y from the top corner of the window. @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. @param[in]