6 lines
133 B
Plaintext
6 lines
133 B
Plaintext
|
|
layout(metal, texture=5, sampler=7) uniform sampler2D mtlSampler;
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
sk_FragColor = sample(mtlSampler, float2(0));
|
||
|
|
}
|