HomeSort by: relevance | last modified time | path
    Searched refs:fb_pixel_t (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.sbin/tpctl/
tpctl.h 77 typedef u_int32_t fb_pixel_t; typedef in typeref:typename:u_int32_t
83 fb_pixel_t *linecache, *workbuf;
84 fb_pixel_t white, black;
109 void fb_drawline(struct fb *, int, int, int, int, fb_pixel_t);
110 void fb_drawpixel(struct fb *, int, int, fb_pixel_t);
fb.c 111 fb->linecache = (fb_pixel_t*)malloc(size);
114 fb->workbuf = (fb_pixel_t*)malloc(size);
144 n = ALIGN(fb->conf.hf_bytes_per_line, 16) / sizeof(fb_pixel_t);
159 fb_pixel_t tmp;
167 fb_pixel_t tmp;
179 __fb_put_pixel(struct fb *fb, fb_pixel_t pixel, int width, int x)
181 fb_pixel_t mask = (1 << width) - 1;
183 x -= (bitsizeof(fb_pixel_t) - width);
189 fb_pixel_t *dst = &fb->linecache[x / bitsizeof(fb_pixel_t)];
    [all...]
main.c 58 void drawcross(struct fb *, int, int, int, fb_pixel_t);
356 drawcross(struct fb *fb, int x, int y, int size, fb_pixel_t pixel)

Completed in 13 milliseconds