mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
doesn't need to set hint[ENABLE_STROKE_PERSPECTIVE] to false, it is by
default
This commit is contained in:
@@ -829,7 +829,6 @@ public class PGL {
|
||||
// Clear all buffers.
|
||||
clearDepth(1);
|
||||
clearStencil(0);
|
||||
|
||||
int argb = pg.backgroundColor;
|
||||
float a = ((argb >> 24) & 0xff) / 255.0f;
|
||||
float r = ((argb >> 16) & 0xff) / 255.0f;
|
||||
|
||||
@@ -37,7 +37,6 @@ public class PGraphics2D extends PGraphicsOpenGL {
|
||||
|
||||
public PGraphics2D() {
|
||||
super();
|
||||
hints[ENABLE_STROKE_PERSPECTIVE] = false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -35,9 +35,9 @@ public class PGraphics3D extends PGraphicsOpenGL {
|
||||
|
||||
public PGraphics3D() {
|
||||
super();
|
||||
hints[ENABLE_STROKE_PERSPECTIVE] = false;
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////
|
||||
|
||||
// RENDERER SUPPORT QUERIES
|
||||
|
||||
Reference in New Issue
Block a user