diff options
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; |