From c803338fb70c2cc7e6a7b25ed557beac48968896 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Sun, 26 Dec 2010 12:56:11 +0100 Subject: [PATCH] silence error --- modules/gfx/src/shader/test_tex_fs.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gfx/src/shader/test_tex_fs.glsl b/modules/gfx/src/shader/test_tex_fs.glsl index 575f75dfd..bfa84270d 100644 --- a/modules/gfx/src/shader/test_tex_fs.glsl +++ b/modules/gfx/src/shader/test_tex_fs.glsl @@ -1,6 +1,6 @@ void main() { - gl_FragColor.rg=frac(gl_TexCoord[0].st); + gl_FragColor.rg=fract(gl_TexCoord[0].st); gl_FragColor.b=1.0; gl_FragColor.a=1.0; } -- GitLab