Home
last modified time | relevance | path

Searched refs:Drawop (Results 1 – 9 of 9) sorted by relevance

/plan9/sys/include/
H A Ddraw.h107 } Drawop; typedef
409 extern void drawop(Image*, Rectangle, Image*, Image*, Point, Drawop);
411 extern void gendrawop(Image*, Rectangle, Image*, Point, Image*, Point, Drawop);
413 extern void lineop(Image*, Point, Point, int, int, int, Image*, Point, Drawop);
415 extern void polyop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
417 extern void fillpolyop(Image*, Point*, int, int, Image*, Point, Drawop);
419 extern Point stringop(Image*, Point, Image*, Point, Font*, char*, Drawop);
421 extern Point stringnop(Image*, Point, Image*, Point, Font*, char*, int, Drawop);
423 extern Point runestringop(Image*, Point, Image*, Point, Font*, Rune*, Drawop);
425 extern Point runestringnop(Image*, Point, Image*, Point, Font*, Rune*, int, Drawop);
[all …]
/plan9/sys/src/cmd/unix/drawterm/include/
H A Ddraw.h109 } Drawop; typedef
405 extern void drawop(Image*, Rectangle, Image*, Image*, Point, Drawop);
407 extern void gendrawop(Image*, Rectangle, Image*, Point, Image*, Point, Drawop);
409 extern void lineop(Image*, Point, Point, int, int, int, Image*, Point, Drawop);
411 extern void polyop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
413 extern void fillpolyop(Image*, Point*, int, int, Image*, Point, Drawop);
415 extern Point stringop(Image*, Point, Image*, Point, Font*, char*, Drawop);
417 extern Point stringnop(Image*, Point, Image*, Point, Font*, char*, int, Drawop);
419 extern Point runestringop(Image*, Point, Image*, Point, Font*, Rune*, Drawop);
421 extern Point runestringnop(Image*, Point, Image*, Point, Font*, Rune*, int, Drawop);
[all …]
/plan9/sys/include/ape/
H A Ddraw.h115 } Drawop; typedef
416 extern void drawop(Image*, Rectangle, Image*, Image*, Point, Drawop);
418 extern void gendrawop(Image*, Rectangle, Image*, Point, Image*, Point, Drawop);
420 extern void lineop(Image*, Point, Point, int, int, int, Image*, Point, Drawop);
422 extern void polyop(Image*, Point*, int, int, int, int, Image*, Point, Drawop);
424 extern void fillpolyop(Image*, Point*, int, int, Image*, Point, Drawop);
426 extern Point stringop(Image*, Point, Image*, Point, Font*, char*, Drawop);
428 extern Point stringnop(Image*, Point, Image*, Point, Font*, char*, int, Drawop);
430 extern Point runestringop(Image*, Point, Image*, Point, Font*, Rune*, Drawop);
432 extern Point runestringnop(Image*, Point, Image*, Point, Font*, Rune*, int, Drawop);
[all …]
/plan9/sys/src/libdraw/
H A Dellipse.c7 …ge *dst, Point *c, int xr, int yr, int thick, Image *src, Point *sp, int alpha, int phi, Drawop op) in doellipse()
39 ellipseop(Image *dst, Point c, int a, int b, int thick, Image *src, Point sp, Drawop op) in ellipseop()
51 fillellipseop(Image *dst, Point c, int a, int b, Image *src, Point sp, Drawop op) in fillellipseop()
64 …(Image *dst, Point c, int a, int b, int thick, Image *src, Point sp, int alpha, int phi, Drawop op) in arcop()
78 fillarcop(Image *dst, Point c, int a, int b, Image *src, Point sp, int alpha, int phi, Drawop op) in fillarcop()
H A Ddraw.c6 _setdrawop(Display *d, Drawop op) in _setdrawop()
20 draw1(Image *dst, Rectangle *r, Image *src, Point *p0, Image *mask, Point *p1, Drawop op) in draw1()
54 drawop(Image *dst, Rectangle r, Image *src, Image *mask, Point p1, Drawop op) in drawop()
66 gendrawop(Image *dst, Rectangle r, Image *src, Point p0, Image *mask, Point p1, Drawop op) in gendrawop()
H A Dstring.c17 stringop(Image *dst, Point pt, Image *src, Point sp, Font *f, char *s, Drawop op) in stringop()
29 stringnop(Image *dst, Point pt, Image *src, Point sp, Font *f, char *s, int len, Drawop op) in stringnop()
41 runestringop(Image *dst, Point pt, Image *src, Point sp, Font *f, Rune *r, Drawop op) in runestringop()
53 runestringnop(Image *dst, Point pt, Image *src, Point sp, Font *f, Rune *r, int len, Drawop op) in runestringnop()
59 …rc, Point sp, Font *f, char *s, Rune *r, int len, Rectangle clipr, Image *bg, Point bgp, Drawop op) in _string()
H A Dpoly.c25 …d, Image *dst, Point *pp, int np, int end0, int end1, int radius, Image *src, Point *sp, Drawop op) in dopoly()
72 polyop(Image *dst, Point *p, int np, int end0, int end1, int radius, Image *src, Point sp, Drawop o… in polyop()
84 fillpolyop(Image *dst, Point *p, int np, int wind, Image *src, Point sp, Drawop op) in fillpolyop()
H A Dbezier.c165 … p0, Point p1, Point p2, Point p3, int end0, int end1, int radius, Image *src, Point sp, Drawop op) in bezierop()
187 …op(Image *dst, Point *pt, int npt, int end0, int end1, int radius, Image *src, Point sp, Drawop op) in bezsplineop()
209 …ezierop(Image *dst, Point p0, Point p1, Point p2, Point p3, int w, Image *src, Point sp, Drawop op) in fillbezierop()
231 fillbezsplineop(Image *dst, Point *pt, int npt, int w, Image *src, Point sp, Drawop op) in fillbezsplineop()
H A Dline.c12 lineop(Image *dst, Point p0, Point p1, int end0, int end1, int radius, Image *src, Point sp, Drawop in lineop()