Files
Seele/res/shaders/Simple.slang
T

11 lines
134 B
Plaintext

import Mat;
struct SimpleMaterial : IMaterial
{
float4 sample(float2 texCoord)
{
return float4(1, 0, 1, 1);
}
}