diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2016-04-04 13:36:12 +0100 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2016-04-04 13:36:12 +0100 |
commit | 9ed6462ab512e967a7f7a1350f9eaaf74105c24d (patch) | |
tree | 24a7fec83a37ae78ba44f603f4b7ef52883e08d0 /wrappers/gltrace.py | |
parent | 55a270c4471eac51174a749857eef9db6371b1e8 (diff) |
helpers: rename glprofile to glfeatures.
This module will have more than just description of OpenGL profiles, but
actual features.
Diffstat (limited to 'wrappers/gltrace.py')
-rw-r--r-- | wrappers/gltrace.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wrappers/gltrace.py b/wrappers/gltrace.py index 3695e977..fe1af817 100644 --- a/wrappers/gltrace.py +++ b/wrappers/gltrace.py @@ -153,7 +153,7 @@ class GlTracer(Tracer): print ' return false;' print ' }' print - print ' glprofile::Profile profile = ctx->profile;' + print ' glfeatures::Profile profile = ctx->profile;' print ' bool es1 = profile.es() && profile.major == 1;' print @@ -969,7 +969,7 @@ class GlTracer(Tracer): print '{' print ' gltrace::Context *ctx = gltrace::getContext();' print - print ' glprofile::Profile profile = ctx->profile;' + print ' glfeatures::Profile profile = ctx->profile;' print ' bool es1 = profile.es() && profile.major == 1;' print |