Reduce indentation in chooseContext

We don't need to keep indenting like the X11 code as we only call
ChoosePixelFormat once.
pull/48/head
Graham 5 years ago
parent adffb1ecac
commit e93a23315b
  1. 15
      gl-natives/src/main/c/jaggl.c

@ -513,14 +513,17 @@ JNIEXPORT jboolean JNICALL Java_jaggl_context_choosePixelFormat1(JNIEnv *env, jc
.iLayerType = PFD_MAIN_PLANE
};
format = ChoosePixelFormat(jaggl_device, &pfd);
if (format) {
if (SetPixelFormat(jaggl_device, format, &pfd)) {
// TODO(gpe): get actual number of alpha bits
if (!format) {
goto dsi_free;
}
result = JNI_TRUE;
goto dsi_free;
}
if (!SetPixelFormat(jaggl_device, format, &pfd)) {
goto dsi_free;
}
// TODO(gpe): get actual number of alpha bits
result = JNI_TRUE;
#else
#error Unsupported platform
#endif

Loading…
Cancel
Save