Bug 185 : Fonts don't display correctly in version 0093 when using OPENGL under OS X
Last modified: 2005-10-21 14:34




Status:
RESOLVED
Resolution:
DUPLICATE of bug 174
Priority:
P2
Severity:
normal

 

Reporter:
vids
Assigned To:
fry

Attachment Type Created Size Actions

Description:   Opened: 2005-10-21 14:27
The fonts don't appear correctly in version 0093 when using OPENGL library, they were
working in version 0092.

The following code illustrates the bug, when run on 0092 the fonts appear correctly but under
version 0093 they are the same size and really tiny.

import processing.opengl.*;

PFont font18;
PFont font30;

void setup(){
size (200,200,OPENGL);
font18=loadFont("Courier-18.vlw");
font30=loadFont("Courier-30.vlw");

}

void draw(){
textFont(font18, 18);
text ("This is size 18",12,10);

textFont(font30, 30);
text ("This is size 30",12,50);
}
Additional Comment #1 From fry 2005-10-21 14:34


*** This bug has been marked as a duplicate of 174 ***