6 lines
98 B
Plaintext
6 lines
98 B
Plaintext
|
uniform shader child;
|
||
|
uniform float3x3 matrix;
|
||
|
half4 main() {
|
||
|
return sample(child, matrix);
|
||
|
}
|