From: Keith Whitwell Date: Tue, 2 Feb 2010 20:20:11 +0000 (+0000) Subject: progs/fpglsl: couple more tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f1ee5a864a3e0ede5aa04d6316e97dc94f01fe8;p=mesa.git progs/fpglsl: couple more tests --- diff --git a/progs/fpglsl/tex-multi.glsl b/progs/fpglsl/tex-multi.glsl new file mode 100644 index 00000000000..5220b7efaf2 --- /dev/null +++ b/progs/fpglsl/tex-multi.glsl @@ -0,0 +1,15 @@ +// Multi-texture fragment shader +// Brian Paul + +// Composite second texture over first. +// We're assuming the 2nd texture has a meaningful alpha channel. + +uniform sampler2D tex1; +uniform sampler2D tex2; + +void main() +{ + vec4 t1 = texture2D(tex1, gl_Color.xy); + vec4 t2 = texture2D(tex2, gl_Color.yz); + gl_FragColor = mix(t1, t2, t2.w); +} diff --git a/progs/fpglsl/tex.glsl b/progs/fpglsl/tex.glsl new file mode 100644 index 00000000000..4302fabe2d5 --- /dev/null +++ b/progs/fpglsl/tex.glsl @@ -0,0 +1,6 @@ +uniform sampler2D tex1; + +void main() +{ + gl_FragColor = texture2D(tex1, gl_Color.xy); +}