mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
make hints[] no longer static
This commit is contained in:
+3
-3
@@ -53,10 +53,10 @@ public class PGraphics extends PImage
|
||||
|
||||
// needs to happen before background() is called
|
||||
// and resize.. so it's gotta be outside
|
||||
static boolean hints[] = new boolean[HINT_COUNT];
|
||||
static {
|
||||
boolean hints[] = new boolean[HINT_COUNT];
|
||||
//static {
|
||||
//hints[NEW_GRAPHICS] = true;
|
||||
}
|
||||
//}
|
||||
|
||||
|
||||
// ........................................................
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
X make m00, m01 etc public
|
||||
X hack to make loadImage() work
|
||||
X cache settings are ignored, may be slow as hell
|
||||
X make hints[] no longer static
|
||||
X they weren't properly resetting
|
||||
|
||||
_ loadImage() is mostly broken
|
||||
|
||||
|
||||
Reference in New Issue
Block a user