mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-21 14:23:02 +01:00
17 lines
351 B
C++
17 lines
351 B
C++
/*
|
|
* Copyright 2011-2012 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include <bgfx.h>
|
|
|
|
namespace bgfx
|
|
{
|
|
/// Returns attribute name.
|
|
const char* getAttribName(Attrib::Enum _attr);
|
|
|
|
/// Dump vertex declaration into debug output.
|
|
void dump(const VertexDecl& _decl);
|
|
|
|
} // namespace bgfx
|