bgfx_dbg_text_image

Draw image into internal debug text buffer.

  1. void bgfx_dbg_text_image(ushort _x, ushort _y, ushort _width, ushort _height, const(void)* _data, ushort _pitch)
    version(BindBgfx_Static)
    extern (C) @nogc nothrow
    void
    bgfx_dbg_text_image
    (
    ushort _x
    ,
    ushort _y
    ,
    ushort _width
    ,
    ushort _height
    ,
    const(void)* _data
    ,
    ushort _pitch
    )
  2. da_bgfx_dbg_text_image bgfx_dbg_text_image;

Parameters

_x ushort

Position x from the left corner of the window.

_y ushort

Position y from the top corner of the window.

_width ushort

Image width.

_height ushort

Image height.

_data const(void)*

Raw image data (character/attribute raw encoding).

_pitch ushort

Image pitch in bytes.

Meta