11 lines
134 B
Plaintext
11 lines
134 B
Plaintext
import Mat;
|
|
|
|
|
|
struct SimpleMaterial : IMaterial
|
|
{
|
|
float4 sample(float2 texCoord)
|
|
{
|
|
return float4(1, 0, 1, 1);
|
|
}
|
|
}
|