check into bezierVertex problem, fixing updatePixelsImpl

This commit is contained in:
benfry
2008-08-16 03:01:59 +00:00
parent 57b94aaccc
commit fcdab10898
2 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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