2018-10-07 02:59:17 +00:00
|
|
|
#include "shader_CFluidPlaneShader.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const boo::VertexElementDescriptor Shader_CFluidPlaneShader::VtxFmtElems[5] = {{boo::VertexSemantic::Position4},
|
|
|
|
{boo::VertexSemantic::Normal4, 0},
|
|
|
|
{boo::VertexSemantic::Normal4, 1},
|
|
|
|
{boo::VertexSemantic::Normal4, 2},
|
|
|
|
{boo::VertexSemantic::Color}};
|
2018-10-07 02:59:17 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
const boo::VertexElementDescriptor Shader_CFluidPlaneShader::TessVtxFmtElems[3] = {
|
|
|
|
{boo::VertexSemantic::Position4}, {boo::VertexSemantic::UV4, 0}, {boo::VertexSemantic::UV4, 1}};
|