todo items, and trying to figure out what's up with threading

This commit is contained in:
benfry
2005-04-29 18:40:43 +00:00
parent 2b024634a1
commit 931efb83ff
2 changed files with 12 additions and 1 deletions

View File

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

View File

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