todo notes and fix for requestImage()

This commit is contained in:
Ben Fry
2015-02-20 16:45:33 -05:00
parent 14c89ed2ec
commit 8afa37a07a
3 changed files with 13 additions and 0 deletions

View File

@@ -4868,6 +4868,10 @@ public class PApplet implements PConstants {
vessel.height = actual.height;
vessel.format = actual.format;
vessel.pixels = actual.pixels;
vessel.pixelWidth = actual.width;
vessel.pixelHeight = actual.height;
vessel.pixelFactor = 1;
}
requestImageCount--;
}

View File

@@ -71,6 +71,8 @@ _ test with JG's 13" retina laptop
graphics
_ saveFrame() from setup() gives a black screen when size() is called
_ as seen in the 'numbers' sketch
_ should the re-alloc of the drawing surface happen in beginDraw()
_ that way it won't blit to the screen until we have a fresh redraw?
_ otherwise it'll also be resizing on another thread.. badness

View File

@@ -51,6 +51,9 @@ X https://github.com/processing/processing/issues/3037
X https://github.com/processing/processing/pull/3047
X several new French translations
X https://github.com/processing/processing/pull/3061
X contributions.txt now gets deleted and recreated instead of overwritten
X https://github.com/processing/processing/pull/3073
X https://github.com/processing/processing/issues/2994
manindra
X Fix for "Probably a ++ should go here" messages
@@ -94,6 +97,10 @@ X https://github.com/processing/processing/pull/3070
X broken Windows build due to launch4j .jar not updated
X https://github.com/processing/processing/issues/3062
X https://github.com/processing/processing/pull/3066
X exported Linux sketches must be run from the sketch folder
X https://github.com/processing/processing/issues/1046
X https://github.com/processing/processing/pull/3083
integration of pdex
X changed JLS4 to JLS8 (but make sure it doesn't introduce anything too weird)