This commit is contained in:
Branimir Karadžić 2017-10-11 09:16:59 -07:00
parent cdd658b44c
commit 96a1d0859b
1 changed files with 5 additions and 5 deletions

View File

@ -139,11 +139,6 @@ namespace bgfx
#if BGFX_CONFIG_USE_TINYSTL
namespace bgfx
{
inline bool isValid(const VertexDecl& _decl)
{
return 0 != _decl.m_stride;
}
struct TinyStlAllocator
{
static void* static_allocate(size_t _bytes);
@ -275,6 +270,11 @@ namespace bgfx
return handle;
}
inline bool isValid(const VertexDecl& _decl)
{
return 0 != _decl.m_stride;
}
struct Clear
{
uint8_t m_index[8];