From 7e421a33f3874e7cf2bcdf922074c09aac80cada Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sun, 19 Oct 2014 23:22:53 +0000 Subject: [PATCH] fixed the unreachable GL error check in getAttribOrUniformLocation in demos/shapes/shapes.c as noted by Kevin Morgan git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1722 7f0cb862-5218-0410-a997-914c9d46530a --- progs/demos/shapes/shapes.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/progs/demos/shapes/shapes.c b/progs/demos/shapes/shapes.c index d132777..8d69fc0 100644 --- a/progs/demos/shapes/shapes.c +++ b/progs/demos/shapes/shapes.c @@ -286,6 +286,7 @@ GLint getAttribOrUniformLocation(const char* name, GLuint program, GLboolean isA fprintf(stderr, "Warning: Could not bind attrib %s\n", name); } + checkError ("getAttribOrUniformLocation"); return attrib; } else @@ -296,9 +297,9 @@ GLint getAttribOrUniformLocation(const char* name, GLuint program, GLboolean isA fprintf(stderr, "Warning: Could not bind uniform %s\n", name); } + checkError ("getAttribOrUniformLocation"); return uniform; } - checkError ("getAttribOrUniformLocation"); } GLuint program; -- 1.7.10.4