summaryrefslogtreecommitdiff
path: root/retrace/glretrace_glx.cpp
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2016-04-04 13:36:12 +0100
committerJose Fonseca <jfonseca@vmware.com>2016-04-04 13:36:12 +0100
commit9ed6462ab512e967a7f7a1350f9eaaf74105c24d (patch)
tree24a7fec83a37ae78ba44f603f4b7ef52883e08d0 /retrace/glretrace_glx.cpp
parent55a270c4471eac51174a749857eef9db6371b1e8 (diff)
helpers: rename glprofile to glfeatures.
This module will have more than just description of OpenGL profiles, but actual features.
Diffstat (limited to 'retrace/glretrace_glx.cpp')
-rw-r--r--retrace/glretrace_glx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/retrace/glretrace_glx.cpp b/retrace/glretrace_glx.cpp
index 4cb631f7..944debcf 100644
--- a/retrace/glretrace_glx.cpp
+++ b/retrace/glretrace_glx.cpp
@@ -96,7 +96,7 @@ static void retrace_glXCreateContextAttribsARB(trace::Call &call) {
Context *share_context = getContext(call.arg(2).toUIntPtr());
const trace::Value * attrib_list = &call.arg(4);
- glprofile::Profile profile = parseContextAttribList(attrib_list);
+ glfeatures::Profile profile = parseContextAttribList(attrib_list);
Context *context = glretrace::createContext(share_context, profile);
context_map[orig_context] = context;