diff options
author | Dave Parks <davep@lindenlab.com> | 2011-08-19 15:28:29 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-08-19 15:28:29 -0500 |
commit | 1f6ad8bb697ef4bbd50b8338e1bc73944958266e (patch) | |
tree | 5f55b159a8cfb6dad08f14567053796561db74a5 /indra/newview/app_settings/shaders/class1/objects/impostorV.glsl | |
parent | f40d2c5afb78f4a17b4753c42f6756dbd76a18c8 (diff) | |
parent | 610764fbfce75f54c95d4b10c2a8f9482a7a7b80 (diff) |
merge
Diffstat (limited to 'indra/newview/app_settings/shaders/class1/objects/impostorV.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class1/objects/impostorV.glsl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indra/newview/app_settings/shaders/class1/objects/impostorV.glsl b/indra/newview/app_settings/shaders/class1/objects/impostorV.glsl new file mode 100644 index 0000000000..724b86a1b7 --- /dev/null +++ b/indra/newview/app_settings/shaders/class1/objects/impostorV.glsl @@ -0,0 +1,16 @@ +/** + * @file impostorV.glsl + * + * $LicenseInfo:firstyear=2007&license=viewerlgpl$ + * $/LicenseInfo$ + */ + + +void main() +{ + //transform vertex + gl_Position = ftransform(); + gl_TexCoord[0] = gl_TextureMatrix[0] * gl_MultiTexCoord0; + + gl_FrontColor = gl_Color; +} |