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

7 lines
159 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-10-24 15:01:09 +02:00
VertexAttributes getAttributes(uint index, float4x4 transform);
2023-11-05 10:36:01 +01:00
};
2023-11-08 23:27:21 +01:00
ParameterBlock<IVertexData> pVertexData;