mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Updated docs.
This commit is contained in:
parent
30c7f6d04d
commit
6ce6b2a4f0
1 changed files with 5 additions and 5 deletions
|
@ -1643,31 +1643,31 @@ namespace bgfx
|
|||
///
|
||||
uint32_t submit(uint8_t _id, IndirectBufferHandle _indirectHandle, uint16_t _start = 0, uint16_t _num = 1, int32_t _depth = 0);
|
||||
|
||||
///
|
||||
/// Set compute index buffer.
|
||||
///
|
||||
/// @attention C99 equivalent is `bgfx_set_compute_index_buffer`.
|
||||
///
|
||||
void setBuffer(uint8_t _stage, IndexBufferHandle _handle, Access::Enum _access);
|
||||
|
||||
///
|
||||
/// Set compute vertex buffer.
|
||||
///
|
||||
/// @attention C99 equivalent is `bgfx_set_compute_vertex_buffer`.
|
||||
///
|
||||
void setBuffer(uint8_t _stage, VertexBufferHandle _handle, Access::Enum _access);
|
||||
|
||||
///
|
||||
/// Set compute dynamic index buffer.
|
||||
///
|
||||
/// @attention C99 equivalent is `bgfx_set_compute_dynamic_index_buffer`.
|
||||
///
|
||||
void setBuffer(uint8_t _stage, DynamicIndexBufferHandle _handle, Access::Enum _access);
|
||||
|
||||
///
|
||||
/// Set compute dynamic vertex buffer.
|
||||
///
|
||||
/// @attention C99 equivalent is `bgfx_set_compute_dynamic_vertex_buffer`.
|
||||
///
|
||||
void setBuffer(uint8_t _stage, DynamicVertexBufferHandle _handle, Access::Enum _access);
|
||||
|
||||
///
|
||||
/// Set compute indirect buffer.
|
||||
///
|
||||
/// @attention C99 equivalent is `bgfx_set_compute_indirect_buffer`.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue