File tree Expand file tree Collapse file tree 2 files changed +4
-15
lines changed Expand file tree Collapse file tree 2 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,6 @@ public class PSurfaceJOGL implements PSurface {
114
114
115
115
protected boolean external = false ;
116
116
117
- // Workaround for https://github.com/processing/processing4/issues/124
118
- static private boolean issue124 = PApplet .platform == PConstants .MACOS ;
119
-
120
117
121
118
public PSurfaceJOGL (PGraphics graphics ) {
122
119
this .graphics = graphics ;
@@ -411,11 +408,7 @@ protected void initWindow() {
411
408
window .setSurfaceScale (new float [] { surfaceScale , surfaceScale });
412
409
413
410
window .setSize (sketchWidth * windowScaleFactor , sketchHeight * windowScaleFactor );
414
- if (issue124 ) {
415
- window .setResizable (true );
416
- } else {
417
- window .setResizable (false );
418
- }
411
+ window .setResizable (false );
419
412
setSize (sketchWidth , sketchHeight );
420
413
if (fullScreen ) {
421
414
PApplet .hideMenuBar ();
@@ -956,11 +949,6 @@ public void display(GLAutoDrawable drawable) {
956
949
pgl .endRender (sketch .sketchWindowColor ());
957
950
}
958
951
PGraphicsOpenGL .completeFinishedPixelTransfers ();
959
-
960
- if (issue124 ) {
961
- setResizable (false );
962
- issue124 = false ;
963
- }
964
952
}
965
953
966
954
if (sketch .exitCalled ()) {
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ X SVG Export
8
8
X update Batik to 1.13 (from 1.8)
9
9
X download it via direct link (don't check into repo)
10
10
X fixes incompatibilities with org.w3c.dom and Java 11
11
+ X JDK 11.0.7+ blank screen issue... workarounds/hacks in place, fix them:
12
+ X https://github.com/processing/processing4/issues/124
13
+ X fixed with the new JOGL RC
11
14
12
15
fixed in 4.x (close/lock these 3.x issues with final 4.0 release)
13
16
_ AppKit errors from P2D/P3D
@@ -31,8 +34,6 @@ _ Linux: https://github.com/processing/processing/issues/5912
31
34
32
35
_ why does GL flash red when resizing?
33
36
34
- _ JDK 11.0.7+ blank screen issue... workarounds/hacks in place, fix them:
35
- _ https://github.com/processing/processing4/issues/124
36
37
37
38
_ Skija bindings
38
39
_ https://github.com/processing/processing4/issues/151
You can’t perform that action at this time.
0 commit comments