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