| 4282 | } |
| 4283 | |
| 4284 | VertexBufferHandle createVertexBuffer(const Memory* _mem, const VertexLayout& _layout, uint16_t _flags) |
| 4285 | { |
| 4286 | BX_ASSERT(NULL != _mem, "_mem can't be NULL"); |
| 4287 | BX_ASSERT(isValid(_layout), "Invalid VertexLayout."); |
| 4288 | return s_ctx->createVertexBuffer(_mem, _layout, _flags); |
| 4289 | } |
| 4290 | |
| 4291 | void setName(VertexBufferHandle _handle, const char* _name, int32_t _len) |
| 4292 | { |
no test coverage detected