From: José Fonseca <jose.r.fonseca@gmail.com>
Date: Fri, 6 May 2011 19:33:07 +0000 (+0100)
Subject: Retrace wglCreateLayerContext and wglSwapLayerBuffers correctly.
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=3099b6d57a59a77e1aa5a0f29b8fd45512d05aa4;p=apitrace

Retrace wglCreateLayerContext and wglSwapLayerBuffers correctly.
---

diff --git a/glretrace_wgl.cpp b/glretrace_wgl.cpp
index 308017e..bdb5f57 100644
--- a/glretrace_wgl.cpp
+++ b/glretrace_wgl.cpp
@@ -110,6 +110,7 @@ static void retrace_wglShareLists(Trace::Call &call) {
 }
 
 static void retrace_wglCreateLayerContext(Trace::Call &call) {
+    retrace_wglCreateContext(call);
 }
 
 static void retrace_wglDescribeLayerPlane(Trace::Call &call) {
@@ -122,6 +123,7 @@ static void retrace_wglRealizeLayerPalette(Trace::Call &call) {
 }
 
 static void retrace_wglSwapLayerBuffers(Trace::Call &call) {
+    retrace_wglSwapBuffers(call);
 }
 
 static void retrace_wglUseFontBitmapsA(Trace::Call &call) {