7 lines
146 B
Plaintext
7 lines
146 B
Plaintext
layout(binding=0) uniform sampler2D t;
|
|
void main()
|
|
{
|
|
half4 c = sampleLod(t, half2(0), 0);
|
|
sk_FragColor = c * sampleLod(t, half3(1), 0);
|
|
}
|