From 6ce6b2a4f0929de91e568e6f9b054c28e1ef4e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 7 Jul 2015 22:53:27 -0700 Subject: [PATCH] Updated docs. --- include/bgfx.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/bgfx.h b/include/bgfx.h index e89802be9..9e1f23b84 100644 --- a/include/bgfx.h +++ b/include/bgfx.h @@ -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`. ///