This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoom-plusplus/shader/ambient.frag

8 lines
126 B
GLSL

uniform sampler2D tex;
varying vec4 ambient;
void main() {
gl_FragColor = ambient * texture2D(tex, gl_TexCoord[0].st);
}