diff options
author | James Canete <use.less01@gmail.com> | 2012-12-04 01:56:52 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-12 21:24:53 +0000 |
commit | 8cb69adad0915fc5de6dc87db1ae28aba44d350e (patch) | |
tree | 7db5db21b83edf73c901c4e6eae884037407adde /src/rend2/glsl/tonemap_vp.glsl | |
parent | 815a7ae53be78f1f7108dbf086b2928d3017bbe4 (diff) |
#5808 - Include and use .glsl in source (rend2)
Diffstat (limited to 'src/rend2/glsl/tonemap_vp.glsl')
-rw-r--r-- | src/rend2/glsl/tonemap_vp.glsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rend2/glsl/tonemap_vp.glsl b/src/rend2/glsl/tonemap_vp.glsl new file mode 100644 index 00000000..5ca41600 --- /dev/null +++ b/src/rend2/glsl/tonemap_vp.glsl @@ -0,0 +1,13 @@ +attribute vec4 attr_Position; +attribute vec4 attr_TexCoord0; + +uniform mat4 u_ModelViewProjectionMatrix; + +varying vec2 var_TexCoords; + + +void main() +{ + gl_Position = u_ModelViewProjectionMatrix * attr_Position; + var_TexCoords = attr_TexCoord0.st; +} |