mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 04:50:11 +01:00
7 lines
89 B
Text
7 lines
89 B
Text
|
|
uniform sampler2D tex1;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_FragColor = texture2D(tex1, gl_Color.xy);
|
||
|
|
}
|