From 931efb83ffc700ee701e43fa6e07958b2d932475 Mon Sep 17 00:00:00 2001 From: benfry Date: Fri, 29 Apr 2005 18:40:43 +0000 Subject: [PATCH] todo items, and trying to figure out what's up with threading --- core/PApplet.java | 5 ++++- core/todo.txt | 8 ++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/core/PApplet.java b/core/PApplet.java index 067669fab..9f259e8e4 100644 --- a/core/PApplet.java +++ b/core/PApplet.java @@ -602,6 +602,7 @@ public class PApplet extends Applet // wake from sleep (necessary otherwise it'll be // up to 10 seconds before update) thread.interrupt(); + //thread.notifyAll(); } } } @@ -614,6 +615,7 @@ public class PApplet extends Applet // wake from sleep (necessary otherwise it'll be // up to 10 seconds before update) thread.interrupt(); + //thread.notifyAll(); } } } @@ -629,6 +631,7 @@ public class PApplet extends Applet if (thread != null) { thread.interrupt(); // wake from sleep + //thread.notifyAll(); } } } @@ -4802,7 +4805,7 @@ public class PApplet extends Applet * The length depends on the size of the number itself. * An int can be up to 32 binary digits, but that seems like * overkill for almost any situation, so this function just - * auto-sizes. If you want a specific number of digits (like all 32) + * auto-size. If you want a specific number of digits (like all 32) * use binary(int what, int digits) to specify how many digits. */ static final public String binary(int what) { diff --git a/core/todo.txt b/core/todo.txt index c79e9b421..5842f2ffb 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -4,6 +4,10 @@ X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action X color() doesn't work properly because g might be null? X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114518309;start=0 +_ is mousePressed broken because of event queue? or at least w/ framerate? + +_ seem to be problems with updatePixels() on the mac +_ appears to run asynchronously _ for present mode, need to set a default display _ currently crashes if only --present is specified w/o --display @@ -50,6 +54,10 @@ _ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action _ video wrong device name crashes things +_ is it the run() exception handler that's leaving off the CRLFs? + +o draw happening before setup() ? + X typed version of expand() and contract() _ need to complete for the others: _ append(), shorten(), splice, slice, subset, concat, reverse