MQEngine
载入中...
搜索中...
未找到
VertexLayouts.h
浏览该文件的文档.
1#ifndef ENGINE_VERTEX_LAYOUTS_H
2#define ENGINE_VERTEX_LAYOUTS_H
3
5
6namespace MQEngine
7{
8
9 constexpr FCT::VertexLayout StandardMeshVertexLayout {
10 FCT::VertexElement{FCT::VtxType::Color4f,"color"},
11 FCT::VertexElement{FCT::VtxType::Position4f,"position"},
12 FCT::VertexElement{FCT::VtxType::TexCoord2f,"texCoord"},
13 FCT::VertexElement{FCT::VtxType::Normal3f,"normal"},
14 };
15}
16
17#endif // ENGINE_VERTEX_LAYOUTS_H
A header file containing third party libraries and macros for platform
定义 application.h:5
constexpr FCT::VertexLayout StandardMeshVertexLayout
定义 VertexLayouts.h:9