diff options
Diffstat (limited to '3rdparty/bgfx/src/vertexdecl.h')
-rw-r--r-- | 3rdparty/bgfx/src/vertexdecl.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/3rdparty/bgfx/src/vertexdecl.h b/3rdparty/bgfx/src/vertexdecl.h deleted file mode 100644 index 2b80b1f50c3..00000000000 --- a/3rdparty/bgfx/src/vertexdecl.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright 2011-2018 Branimir Karadzic. All rights reserved. - * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause - */ - -#ifndef BGFX_VERTEXDECL_H_HEADER_GUARD -#define BGFX_VERTEXDECL_H_HEADER_GUARD - -#include <bgfx/bgfx.h> -#include <bx/readerwriter.h> - -namespace bgfx -{ - /// - void initAttribTypeSizeTable(RendererType::Enum _type); - - /// Returns attribute name. - const char* getAttribName(Attrib::Enum _attr); - - /// - const char* getAttribNameShort(Attrib::Enum _attr); - - /// - Attrib::Enum idToAttrib(uint16_t id); - - /// - uint16_t attribToId(Attrib::Enum _attr); - - /// - AttribType::Enum idToAttribType(uint16_t id); - - /// - int32_t write(bx::WriterI* _writer, const bgfx::VertexDecl& _decl, bx::Error* _err = NULL); - - /// - int32_t read(bx::ReaderI* _reader, bgfx::VertexDecl& _decl, bx::Error* _err = NULL); - -} // namespace bgfx - -#endif // BGFX_VERTEXDECL_H_HEADER_GUARD |