Module: wine Branch: master Commit: f2d77d103f4bce44c05d759aae848f1584fa8bd0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2d77d103f4bce44c05d759aae...
Author: Karsten Elfenbein kelfe@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;