Karsten Elfenbein : wined3d: Corrected names in checkGLcall text.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Oct 10 13:19:10 CDT 2006


Module: wine
Branch: master
Commit: f2d77d103f4bce44c05d759aae848f1584fa8bd0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f2d77d103f4bce44c05d759aae848f1584fa8bd0

Author: Karsten Elfenbein <kelfe at gmx.de>
Date:   Tue Oct 10 18:58:39 2006 +0200

wined3d: Corrected names in checkGLcall text.

---

 dlls/wined3d/query.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/query.c b/dlls/wined3d/query.c
index b7c87c3..b0c1482 100644
--- a/dlls/wined3d/query.c
+++ b/dlls/wined3d/query.c
@@ -163,12 +163,12 @@ static HRESULT  WINAPI IWineD3DQueryImpl
             GLuint queryId = ((WineQueryOcclusionData *)This->extendedData)->queryId;
 
             GL_EXTCALL(glGetQueryObjectuivARB(queryId, GL_QUERY_RESULT_AVAILABLE_ARB, &available));
-            checkGLcall("glGetQueryObjectiv(GL_QUERY_RESULT_AVAILABLE)\n");
+            checkGLcall("glGetQueryObjectuivARB(GL_QUERY_RESULT_AVAILABLE)\n");
             TRACE("(%p) : available %d.\n", This, available);
 
             if (available || dwGetDataFlags & WINED3DGETDATA_FLUSH) {
                 GL_EXTCALL(glGetQueryObjectuivARB(queryId, GL_QUERY_RESULT_ARB, &samples));
-                checkGLcall("glGetQueryObjectuiv(GL_QUERY_RESULT)\n");
+                checkGLcall("glGetQueryObjectuivARB(GL_QUERY_RESULT)\n");
                 TRACE("(%p) : Returning %d samples.\n", This, samples);
                 *data = samples;
                 res = S_OK;




More information about the wine-cvs mailing list