From c68a8ed314fcc9cf652749e8970d0d6b0f26dbf4 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Mon, 12 Jun 2006 14:09:49 +0000 Subject: [PATCH] Win32: Make sure the ARB pixel format path is selected when floating point formats are required --- 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 052b4075..36c3baa2 100644 --- a/src/native/win32/context.c +++ b/src/native/win32/context.c @@ -361,7 +361,7 @@ int findPixelFormatOnDC(JNIEnv *env, HDC hdc, jobject pixel_format, jobject pixe jclass cls_pixel_format = (*env)->GetObjectClass(env, pixel_format); int samples = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "samples", "I")); bool floating_point = (bool)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "floating_point", "Z")); - bool use_arb_selection = samples > 0 || pbuffer || pixelFormatCaps != NULL; + 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 (!applyPixelFormat(env, hdc, pixel_format_id)) {