Set swap interval of the onscreen context on macOS

pull/48/head
Graham 5 years ago
parent 82e2c1f01a
commit 57e61da679
  1. 3
      gl-natives/src/main/c/jaggl.c

@ -740,8 +740,7 @@ JNIEXPORT void JNICALL Java_jaggl_context_setSwapInterval(JNIEnv *env, jclass cl
#elif defined(__APPLE__) && defined(__MACH__)
GLint param = (GLint) interval;
CGLSetParameter(jaggl_context, kCGLCPSwapInterval, &param);
/* TODO(gpe): what about jaggl_onscreen_context? */
CGLSetParameter(jaggl_onscreen_context, kCGLCPSwapInterval, &param);
#else
#error Unsupported platform
#endif

Loading…
Cancel
Save