Changeset 267 for trunk/tests/gui_test/gui.frag
- Timestamp:
- 06/19/14 19:03:25 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/gui_test/gui.frag
r161 r267 2 2 varying vec4 v_color; 3 3 varying vec2 v_texcoord; 4 uniform sampler2D tex;4 uniform sampler2D nv_t_diffuse; 5 5 6 6 void main(void) { 7 vec4 texture = texture2D( tex,v_texcoord);7 vec4 texture = texture2D(nv_t_diffuse,v_texcoord); 8 8 gl_FragColor = v_color * texture; 9 9 }
Note: See TracChangeset
for help on using the changeset viewer.