Win32: Make sure the ARB pixel format path is selected when floating point formats are required

This commit is contained in:
Elias Naur 2006-06-12 14:09:49 +00:00
parent ea121f6f7e
commit c68a8ed314
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {