Commit eafb3d8f authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

opengl32/tests: Use BOOL type where appropriate.

parent 129df098
...@@ -343,7 +343,7 @@ static void test_setpixelformat(HDC winhdc) ...@@ -343,7 +343,7 @@ static void test_setpixelformat(HDC winhdc)
static void test_sharelists(HDC winhdc) static void test_sharelists(HDC winhdc)
{ {
HGLRC hglrc1, hglrc2, hglrc3; HGLRC hglrc1, hglrc2, hglrc3;
int res; BOOL res;
hglrc1 = wglCreateContext(winhdc); hglrc1 = wglCreateContext(winhdc);
res = wglShareLists(0, 0); res = wglShareLists(0, 0);
...@@ -451,7 +451,7 @@ static void test_colorbits(HDC hdc) ...@@ -451,7 +451,7 @@ static void test_colorbits(HDC hdc)
int iAttribRet[sizeof(iAttribList)/sizeof(iAttribList[0])]; int iAttribRet[sizeof(iAttribList)/sizeof(iAttribList[0])];
const int iAttribs[] = { WGL_ALPHA_BITS_ARB, 1, 0 }; const int iAttribs[] = { WGL_ALPHA_BITS_ARB, 1, 0 };
unsigned int nFormats; unsigned int nFormats;
int res; BOOL res;
int iPixelFormat = 0; int iPixelFormat = 0;
if (!pwglChoosePixelFormatARB) if (!pwglChoosePixelFormatARB)
...@@ -486,7 +486,7 @@ static void test_gdi_dbuf(HDC hdc) ...@@ -486,7 +486,7 @@ static void test_gdi_dbuf(HDC hdc)
int iAttribRet[sizeof(iAttribList)/sizeof(iAttribList[0])]; int iAttribRet[sizeof(iAttribList)/sizeof(iAttribList[0])];
unsigned int nFormats; unsigned int nFormats;
int iPixelFormat; int iPixelFormat;
int res; BOOL res;
if (!pwglGetPixelFormatAttribivARB) if (!pwglGetPixelFormatAttribivARB)
{ {
...@@ -730,7 +730,8 @@ static void test_deletecontext(HWND hwnd, HDC hdc) ...@@ -730,7 +730,8 @@ static void test_deletecontext(HWND hwnd, HDC hdc)
struct wgl_thread_param thread_params; struct wgl_thread_param thread_params;
HGLRC hglrc = wglCreateContext(hdc); HGLRC hglrc = wglCreateContext(hdc);
HANDLE thread_handle; HANDLE thread_handle;
DWORD res, tid; BOOL res;
DWORD tid;
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
res = wglDeleteContext(NULL); res = wglDeleteContext(NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment