diff options
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) { |