From 8afa37a07adcfcb2273d841a9587cab19e72e2ed Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Fri, 20 Feb 2015 16:45:33 -0500 Subject: [PATCH] todo notes and fix for requestImage() --- core/src/processing/core/PApplet.java | 4 ++++ core/todo.txt | 2 ++ todo.txt | 7 +++++++ 3 files changed, 13 insertions(+) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 043d5f8e4..750c61ca2 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -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--; } diff --git a/core/todo.txt b/core/todo.txt index e5e421b3a..fd82c2a6f 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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 diff --git a/todo.txt b/todo.txt index c677e7e00..efdae03b2 100644 --- a/todo.txt +++ b/todo.txt @@ -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)