Files
Seele/res/shaders/lib/VertexData.slang
T

8 lines
155 B
Plaintext
Raw Normal View History

2023-11-08 23:27:21 +01:00
import MaterialParameter;
2023-10-07 19:29:53 +02:00
2023-11-08 23:27:21 +01:00
interface IVertexData
2023-10-07 19:29:53 +02:00
{
2023-11-27 21:08:27 +01:00
VertexAttributes getAttributes(uint index);
2023-11-05 10:36:01 +01:00
};
2023-11-10 19:18:09 +01:00
layout(set = 1)
2023-11-08 23:27:21 +01:00
ParameterBlock<IVertexData> pVertexData;