Searched refs:gfx_putpixel (Results 1 – 4 of 4) sorted by relevance
/lk-master/lib/tga/ |
A D | tga.c | 65 gfx_putpixel(surface, x, y, 0xff000000 | r << 16 | g << 8 | b); in decode_2byte() 73 gfx_putpixel(surface, x, y, 0xff000000 | in[2] << 16 | in[1] << 8 | in[0]); in decode_3byte() 82 gfx_putpixel(surface, x, y, 0); in decode_4byte() 84 gfx_putpixel(surface, x, y, in[3] << 24 | in[2] << 16 | in[1] << 8 | in[0]); in decode_4byte()
|
/lk-master/lib/font/ |
A D | font.c | 39 gfx_putpixel(surface, x + j, y + i, color); in font_draw_char()
|
/lk-master/lib/gfx/ |
A D | gfx.c | 136 void gfx_putpixel(gfx_surface *surface, uint x, uint y, uint color) { in gfx_putpixel() function 691 …gfx_putpixel(surface, x, y, (0xff << 24) | (scaledx * scaledy) << 16 | (scaledx >> 1) << 8 | scale… in gfx_draw_pattern() 713 gfx_putpixel(surface, x, y, 0xFFFFFFFF); in gfx_draw_pattern_white() 759 gfx_putpixel(surface, x, y, 0xff << 24 | color); in gfx_draw_mandelbrot() 781 gfx_putpixel(surface, x, y, 0xff << 24 | color << 16); in gfx_draw_rgb_bars() 786 gfx_putpixel(surface, x, y, 0xff << 24 | color << 8); in gfx_draw_rgb_bars() 791 gfx_putpixel(surface, x, y, 0xff << 24 | color); in gfx_draw_rgb_bars() 834 … gfx_putpixel(surface, x, y, (0xff << 24) | (argv[2].i << 16) | (argv[3].i << 8) | argv[4].i); in cmd_gfx()
|
/lk-master/lib/gfx/include/lib/ |
A D | gfx.h | 69 void gfx_putpixel(gfx_surface *surface, uint x, uint y, uint color);
|
Completed in 5 milliseconds