Files
Seele/res/shaders/lib/VertexData.slang
T
2023-11-08 23:27:21 +01:00

13 lines
276 B
Plaintext

import MaterialParameter;
interface IVertexAttributes
{
MaterialParameter create();
};
interface IVertexData
{
associatedtype VertexAttributes : IVertexAttributes;
VertexAttributes getAttributes(uint index, float4x4 transform);
};
ParameterBlock<IVertexData> pVertexData;