From ca4ffed1b13b8b0df99525d6b1e4f5f9455fd09e Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Mon, 12 Jun 2006 14:17:42 +0000 Subject: [PATCH] Win32: Fixed exception message when the ARB pixel format path is selected, but the dummy pixel format is -1. --- src/native/win32/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/win32/context.c b/src/native/win32/context.c index 36c3baa2..09641cda 100644 --- a/src/native/win32/context.c +++ b/src/native/win32/context.c @@ -363,7 +363,7 @@ int findPixelFormatOnDC(JNIEnv *env, HDC hdc, jobject pixel_format, jobject pixe bool floating_point = (bool)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "floating_point", "Z")); bool use_arb_selection = samples > 0 || floating_point || pbuffer || pixelFormatCaps != NULL; pixel_format_id = findPixelFormatDefault(env, hdc, pixel_format, use_hdc_bpp, double_buffer); - if (use_arb_selection) { + if (pixel_format_id != -1 && use_arb_selection) { if (!applyPixelFormat(env, hdc, pixel_format_id)) { return -1; }