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 /retrace/glretrace_wgl.cpp | |
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 'retrace/glretrace_wgl.cpp')
-rw-r--r-- | retrace/glretrace_wgl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/retrace/glretrace_wgl.cpp b/retrace/glretrace_wgl.cpp index 6c139791..6e889ba9 100644 --- a/retrace/glretrace_wgl.cpp +++ b/retrace/glretrace_wgl.cpp @@ -147,7 +147,7 @@ static void retrace_wglShareLists(trace::Call &call) { Context *share_context = getContext(hglrc1); Context *old_context = getContext(hglrc2); - glprofile::Profile profile = old_context->profile(); + glfeatures::Profile profile = old_context->profile(); Context *new_context = glretrace::createContext(share_context, profile); if (new_context) { glretrace::Context *currentContext = glretrace::getCurrentContext(); @@ -279,7 +279,7 @@ static void retrace_wglCreateContextAttribsARB(trace::Call &call) { Context *share_context = getContext(call.arg(1).toUIntPtr()); const trace::Value * attribList = &call.arg(2); - glprofile::Profile profile = parseContextAttribList(attribList); + glfeatures::Profile profile = parseContextAttribList(attribList); Context *context = glretrace::createContext(share_context, profile); context_map[orig_context] = context; |