Module: Mesa
Branch: master
Commit: cfb0f2489dabd07e905969484edb9317395b2f6a
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=cfb0f2489dabd07e905969484edb9317395b2f6a

Author: Brian Paul <[email protected]>
Date:   Tue Sep 22 11:02:04 2009 -0600

progs/perf: added PerfExtensionSupported() helper

---

 progs/perf/glmain.c |    7 +++++++
 progs/perf/glmain.h |    3 +++
 2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/progs/perf/glmain.c b/progs/perf/glmain.c
index 8b41b8e..a167be0 100644
--- a/progs/perf/glmain.c
+++ b/progs/perf/glmain.c
@@ -165,6 +165,13 @@ PerfReshapeWindow( unsigned w, unsigned h )
 }
 
 
+GLboolean
+PerfExtensionSupported(const char *ext)
+{
+   return glutExtensionSupported(ext);
+}
+
+
 static void
 Idle(void)
 {
diff --git a/progs/perf/glmain.h b/progs/perf/glmain.h
index ccfd289..d9bcd5f 100644
--- a/progs/perf/glmain.h
+++ b/progs/perf/glmain.h
@@ -49,6 +49,9 @@ PerfShaderProgram(const char *vertShader, const char 
*fragShader);
 extern int
 PerfReshapeWindow( unsigned w, unsigned h );
 
+extern GLboolean
+PerfExtensionSupported(const char *ext);
+
 
 /** Test programs must implement these functions **/
 

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to