Commit 08637ac3 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

opengl32/tests: Use win_skip() to skip over unimplemented functionality.

parent 77a3cffb
...@@ -311,7 +311,7 @@ static void test_colorbits(HDC hdc) ...@@ -311,7 +311,7 @@ static void test_colorbits(HDC hdc)
if (!pwglChoosePixelFormatARB) if (!pwglChoosePixelFormatARB)
{ {
skip("wglChoosePixelFormatARB is not available\n"); win_skip("wglChoosePixelFormatARB is not available\n");
return; return;
} }
...@@ -345,7 +345,7 @@ static void test_gdi_dbuf(HDC hdc) ...@@ -345,7 +345,7 @@ static void test_gdi_dbuf(HDC hdc)
if (!pwglGetPixelFormatAttribivARB) if (!pwglGetPixelFormatAttribivARB)
{ {
skip("wglGetPixelFormatAttribivARB is not available\n"); win_skip("wglGetPixelFormatAttribivARB is not available\n");
return; return;
} }
...@@ -595,7 +595,7 @@ START_TEST(opengl) ...@@ -595,7 +595,7 @@ START_TEST(opengl)
/* The lack of wglGetExtensionsStringARB in general means broken software rendering or the lack of decent OpenGL support, skip tests in such cases */ /* The lack of wglGetExtensionsStringARB in general means broken software rendering or the lack of decent OpenGL support, skip tests in such cases */
if (!pwglGetExtensionsStringARB) if (!pwglGetExtensionsStringARB)
{ {
skip("wglGetExtensionsStringARB is not available\n"); win_skip("wglGetExtensionsStringARB is not available\n");
return; return;
} }
......
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