Initial revision
This commit is contained in:
parent
ed7c8e8d02
commit
76193d7cb0
223 changed files with 32479 additions and 0 deletions
36
src/libdraw/getsubfont.c
Normal file
36
src/libdraw/getsubfont.c
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <draw.h>
|
||||
|
||||
/*
|
||||
* Default version: treat as file name
|
||||
*/
|
||||
|
||||
Subfont*
|
||||
_getsubfont(Display *d, char *name)
|
||||
{
|
||||
int fd;
|
||||
Subfont *f;
|
||||
|
||||
fd = open(name, OREAD);
|
||||
|
||||
if(fd < 0){
|
||||
fprint(2, "getsubfont: can't open %s: %r\n", name);
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* unlock display so i/o happens with display released, unless
|
||||
* user is doing his own locking, in which case this could break things.
|
||||
* _getsubfont is called only from string.c and stringwidth.c,
|
||||
* which are known to be safe to have this done.
|
||||
*/
|
||||
if(d->locking == 0)
|
||||
unlockdisplay(d);
|
||||
f = readsubfont(d, name, fd, d->locking==0);
|
||||
if(d->locking == 0)
|
||||
lockdisplay(d);
|
||||
if(f == 0)
|
||||
fprint(2, "getsubfont: can't read %s: %r\n", name);
|
||||
close(fd);
|
||||
return f;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue