File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
java/src/processing/mode/java/preproc Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 22
33
44opengl
5+ X filter(PShader) broken in HDPI mode
6+ X https://github.com/processing/processing/issues/3577
57_ Use PBOs for async texture copy
68_ https://github.com/processing/processing/issues/3569
79_ filter(PShader) broken in HiDPI mode
Original file line number Diff line number Diff line change 2929
3030
3131public class SurfaceInfo {
32- // String statement ;
33- StringList statements ;
32+ StringList statements = new StringList () ;
33+
3434 String width ;
3535 String height ;
3636 String renderer ;
@@ -119,9 +119,6 @@ public StringList getStatements() {
119119 * matched against and removed from the size() method in the code.
120120 */
121121 public void addStatement (String stmt ) {
122- if (statements == null ) {
123- statements = new StringList ();
124- }
125122 statements .append (stmt );
126123 }
127124
@@ -133,7 +130,7 @@ public void addStatements(StringList list) {
133130
134131 /** @return true if there's code to be inserted for a settings() method. */
135132 public boolean hasSettings () {
136- return statements != null ;
133+ return statements . size () != 0 ;
137134 }
138135
139136
Original file line number Diff line number Diff line change 110242 (3.0b4)
2+ X Fix NullPointerException with some sketches that have no size() command
3+ X https://github.com/processing/processing/issues/3585
4+
5+ gsoc
6+ X Second round of arm patches (v5)
7+ X https://github.com/processing/processing/pull/3583
28
39
410known issues
@@ -8,6 +14,8 @@ _ but anything else reports "font sadness" b/c it's using the system JRE
814_ https://github.com/processing/processing/issues/3543
915_ move to javapackager or another option?
1016_ http://www.excelsiorjet.com/kb/35/howto-create-a-single-exe-from-your-java-application
17+ _ P2D and P3D windows behave strangely when larger than the screen size
18+ _ https://github.com/processing/processing/issues/3401
1119_ mouse events (i.e. toggle breakpoint) seem to be firing twice
1220
1321
You can’t perform that action at this time.
0 commit comments