mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
rewind on debugging
This commit is contained in:
@@ -1731,7 +1731,7 @@ public class PGraphicsJava2D extends PGraphics /*PGraphics2D*/ {
|
||||
|
||||
public void set(int x, int y, int argb) {
|
||||
if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return;
|
||||
//((BufferedImage) image).setRGB(x, y, argb);
|
||||
// ((BufferedImage) image).setRGB(x, y, argb);
|
||||
getset[0] = argb;
|
||||
WritableRaster raster = ((BufferedImage) image).getRaster();
|
||||
raster.setDataElements(x, y, getset);
|
||||
|
||||
@@ -9,7 +9,6 @@ X OpenGL is rendering darker in 0149+
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=958
|
||||
X the fix has been found, just incorporate it
|
||||
X thanks to dave bollinger
|
||||
_ add a note about this to the changes file
|
||||
X OutOfMemoryError with ellipse() in P3D and OPENGL
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1086
|
||||
X point(x,y) ignores noStroke() (in some renderers)
|
||||
@@ -20,11 +19,11 @@ X fix for xml elements that have null names
|
||||
X added listChildren() method
|
||||
X added optional toString(boolean) parameter to enable/disable indents
|
||||
|
||||
|
||||
_ if no draw() method, and renderer is not displayable, then exit
|
||||
_ static mode PDFs shouldn't just hang
|
||||
|
||||
_ public PImage(java.awt.Image) sets format to RGB (but could be ARGB)
|
||||
_ focus not coming through, ESC no longer working
|
||||
_ focus not coming through, ESC no longer working(?)
|
||||
|
||||
|
||||
[ known problems ]
|
||||
|
||||
Reference in New Issue
Block a user