• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2out vec4 sk_FragColor;
3layout (binding = 0) uniform sampler2D t;
4void main() {
5    vec4 c = textureLod(t, vec2(0.0), 0.0);
6    sk_FragColor = c * textureLod(t, vec3(1.0), 0.0);
7}
8