File tree 1 file changed +7
-7
lines changed
src/main/java/org/myrobotlab/oculus
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -225,12 +225,12 @@ protected final long setupDisplay() {
225
225
// Let LWJGL know to use this current context.
226
226
GL .createCapabilities ();
227
227
// Setup the framebuffer resize callback.
228
- glfwSetFramebufferSizeCallback (window , (framebufferSizeCallback = new GLFWFramebufferSizeCallback () {
229
- @ Override
230
- public void invoke (long window , int width , int height ) {
231
- onResize (width , height );
232
- }
233
- }));
228
+ // glfwSetFramebufferSizeCallback(window, (framebufferSizeCallback = new GLFWFramebufferSizeCallback() {
229
+ // @Override
230
+ // public void invoke(long window, int width, int height) {
231
+ // onResize(width, height);
232
+ // }
233
+ // }));
234
234
// TODO: set location and vsync?! Do we need to update these for lwjgl3?
235
235
// Display.setLocation(left, right);
236
236
// TODO: vsync enabled?
@@ -418,7 +418,7 @@ protected void initGl() {
418
418
// Initialize GLFW.
419
419
glfwInit ();
420
420
// Setup an error callback to print GLFW errors to the console.
421
- glfwSetErrorCallback (errorCallback = GLFWErrorCallback .createPrint (System .err ));
421
+ // glfwSetErrorCallback(errorCallback = GLFWErrorCallback.createPrint(System.err));
422
422
423
423
// contextAttributes = new ContextAttribs(4,
424
424
// 1).withProfileCore(true).withDebug(true);
You can’t perform that action at this time.
0 commit comments