diff options
Diffstat (limited to 'Runtime/Graphics/CustomVertexLayout.h')
-rw-r--r-- | Runtime/Graphics/CustomVertexLayout.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Runtime/Graphics/CustomVertexLayout.h b/Runtime/Graphics/CustomVertexLayout.h index 402e663..86dcf90 100644 --- a/Runtime/Graphics/CustomVertexLayout.h +++ b/Runtime/Graphics/CustomVertexLayout.h @@ -9,7 +9,14 @@ struct CustomVertexLayout { - GLuint buffer; + GLuint buffer; // ´´½¨Ê±Áô¿Õ std::vector<VertexAttributeDescriptor> attributes; }; +namespace VertexLayout +{ + + extern void SetupCustomVertexLayout(CustomVertexLayout& layout); + +} + |