From 43bc06cb48e2939d69e502eadc9fec59fd2b8495 Mon Sep 17 00:00:00 2001 From: benfry Date: Fri, 20 Feb 2009 02:23:19 +0000 Subject: [PATCH] rewind on debugging --- core/src/processing/core/PGraphicsJava2D.java | 2 +- core/todo.txt | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/src/processing/core/PGraphicsJava2D.java b/core/src/processing/core/PGraphicsJava2D.java index ced40bbcf..c27b7004d 100644 --- a/core/src/processing/core/PGraphicsJava2D.java +++ b/core/src/processing/core/PGraphicsJava2D.java @@ -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); diff --git a/core/todo.txt b/core/todo.txt index 02e29247e..2e5e042d7 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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 ]