Lines Matching refs:frame_buffer
13 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2);
15 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2);
18 void linecount (char* frame_buffer);
49 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2)
52 for (i=0; i < maxx * maxy * bpp; i++) frame_buffer[i]=(char) 0;
55 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2)
62 frame_buffer[current_pixel+0] = (char) 128;
63 frame_buffer[current_pixel+1] = (char) 0;
64 frame_buffer[current_pixel+2] = (char) 0;
67 frame_buffer[current_pixel+0] = (char) 0;
68 frame_buffer[current_pixel+1] = (char) 128;
69 frame_buffer[current_pixel+2] = (char) 0;
72 frame_buffer[current_pixel+0] = (char) 0;
73 frame_buffer[current_pixel+1] = (char) 0;
74 frame_buffer[current_pixel+2] = (char) 128;
123 void linecount (char* frame_buffer)
130 frame_buffer[current_pixel+0] = (char) 0;
131 frame_buffer[current_pixel+1] = (char) 0;
132 frame_buffer[current_pixel+2] = (char) 128;
136 frame_buffer[current_pixel+0] = (char) 128;
137 frame_buffer[current_pixel+1] = (char) 0;
138 frame_buffer[current_pixel+2] = (char) 0;