diff options
author | Brian Paul <[email protected]> | 2009-09-22 11:02:04 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-22 11:15:11 -0600 |
commit | cfb0f2489dabd07e905969484edb9317395b2f6a (patch) | |
tree | aed9d54904b647abe418928e287c88254b5e748b /progs/perf/glmain.c | |
parent | 0ec26cce366f935c093fbf2819ee7fac2af48111 (diff) |
progs/perf: added PerfExtensionSupported() helper
Diffstat (limited to 'progs/perf/glmain.c')
-rw-r--r-- | progs/perf/glmain.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/perf/glmain.c b/progs/perf/glmain.c index 8b41b8ee829..a167be042ef 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) { |