bgfx_make_ref

Make reference to data to pass to bgfx. Unlike bgfx::alloc, this call doesn't allocate memory for data. It just copies the _data pointer. You can pass ReleaseFn function pointer to release this memory after it's consumed, otherwise you must make sure _data is available for at least 2 bgfx::frame calls. ReleaseFn function must be able to be called from any thread. Attention: Data passed must be available for at least 2 bgfx::frame calls.

  1. const(bgfx_memory_t)* bgfx_make_ref(const(void)* _data, uint _size)
    version(BindBgfx_Static)
    extern (C) @nogc nothrow
    bgfx_make_ref
    (
    const(void)* _data
    ,
    uint _size
    )
  2. da_bgfx_make_ref bgfx_make_ref;

Parameters

_data const(void)*

Pointer to data.

_size uint

Size of data.

Meta