diff --git a/core/src/processing/core/PImage.java b/core/src/processing/core/PImage.java index dc6c26e78..9739019f0 100644 --- a/core/src/processing/core/PImage.java +++ b/core/src/processing/core/PImage.java @@ -268,7 +268,7 @@ public class PImage implements PConstants, Cloneable { } - public void updatePixelsImpl(int x1, int y1, int x2, int y2) { + protected void updatePixelsImpl(int x1, int y1, int x2, int y2) { if (!modified) { mx1 = x1; mx2 = x2; diff --git a/core/todo.txt b/core/todo.txt index 4b85977d0..a5be69b95 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -11,6 +11,9 @@ X add a bunch of changes to the reference to support this X Duplicate 3d faces in beginRaw() export X this was actually doubling geometry, potentially a bit of a disaster X http://dev.processing.org/bugs/show_bug.cgi?id=737 +o bezierVertex YZ Plane fill problem +X http://dev.processing.org/bugs/show_bug.cgi?id=752 +X weird coplanar stuff, shouldn't be doing 3D anyway cleanup X switch to requestImage() (done in 0145) @@ -51,9 +54,6 @@ _ should instead be inside size(), and init(), no? _ should we do joins when alpha is turned off? _ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1210007450 -_ bezierVertex YZ Plane fill problem -_ http://dev.processing.org/bugs/show_bug.cgi?id=752 - _ for begin/endRecord, use a piggyback mechanism _ that way won't have to pass a PApplet around _ this has a big impact on the SVG library