From 42406fcf8f669d16c47da1c733c634c59eb79028 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Thu, 24 Nov 2005 10:28:32 +0000 Subject: [PATCH] Win32: Removed unused variable from context.c --- src/native/win32/context.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/native/win32/context.c b/src/native/win32/context.c index 28d49cb3..f9525145 100644 --- a/src/native/win32/context.c +++ b/src/native/win32/context.c @@ -255,7 +255,6 @@ static int findPixelFormatFromBPP(JNIEnv *env, HDC hdc, jobject pixel_format, in int alpha = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "alpha", "I")); int depth = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "depth", "I")); int stencil = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "stencil", "I")); - int samples = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "samples", "I")); int num_aux_buffers = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "num_aux_buffers", "I")); int accum_bpp = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "accum_bpp", "I")); int accum_alpha = (int)(*env)->GetIntField(env, pixel_format, (*env)->GetFieldID(env, cls_pixel_format, "accum_alpha", "I"));