Improving Material shader code generation

This commit is contained in:
Dynamitos
2020-09-19 14:36:50 +02:00
parent 6814587b54
commit facbfed79c
72 changed files with 1049 additions and 329 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
using namespace Seele;
Mesh::Mesh(MeshDescription description, Gfx::PIndexBuffer indexBuffer)
: description(description)
Mesh::Mesh(PVertexShaderInput vertexInput, Gfx::PIndexBuffer indexBuffer)
: vertexInput(vertexInput)
, indexBuffer(indexBuffer)
{
}