Unravel Engine C++ Reference
Loading...
Searching...
No Matches
index_buffer.cpp
Go to the documentation of this file.
1#include "index_buffer.h"
2namespace gfx
3{
4
5index_buffer::index_buffer(const memory_view* _mem, std::uint16_t _flags /*= BGFX_BUFFER_NONE*/)
6{
7 handle_ = create_index_buffer(_mem, _flags);
8}
9} // namespace gfx
index_buffer_handle create_index_buffer(const memory_view *_mem, uint16_t _flags)
Definition graphics.cpp:336
bgfx::Memory memory_view
Definition graphics.h:23
index_buffer()=default