SCREEN_SPACE fonts fixed, threading fixes, bezierVertex fixes

This commit is contained in:
benfry
2005-03-25 17:23:55 +00:00
parent 8fc4df78c1
commit b211d76faf
5 changed files with 49 additions and 8 deletions

View File

@@ -530,7 +530,7 @@ public class PFont implements PConstants {
*/
} else { // SCREEN_SPACE
parent.loadPixels();
//parent.loadPixels();
int xx = (int) x + leftExtent[glyph];;
int yy = (int) y - topExtent[glyph];
@@ -585,7 +585,7 @@ public class PFont implements PConstants {
(( a1 * fb + a2 * ( p2 & 0xff)) >> 8));
}
}
parent.updatePixels();
//parent.updatePixels();
}
}