Lines Matching refs:y1
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);
16 void draw_primary_colours_generic(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2);
17 void draw_primary_colours_generic_fast(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2);
49 void blank_framebuffer(char* frame_buffer, int x1, int y1, int x2, int y2) in blank_framebuffer() argument
55 void draw_primary_colors (char* frame_buffer, int x1, int y1, int x2, int y2) in draw_primary_colors() argument
58 for (i=y1; i < y2; i++){ in draw_primary_colors()
81 void draw_primary_colours_generic(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2) in draw_primary_colours_generic() argument
85 for(j=y1;j<y2;j++) in draw_primary_colours_generic()
87 if(j<y1*2/3+y2/3) in draw_primary_colours_generic()
89 else if(j<y1/3+y2*2/3) in draw_primary_colours_generic()
95 void draw_primary_colours_generic_fast(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2) in draw_primary_colours_generic_fast() argument
98 int i,j,y3=(y1*2+y2)/3,y4=(y1+y2*2)/3; in draw_primary_colours_generic_fast()
100 rfbDrawPixel(s,x1,y1,f.redMax<<f.redShift); in draw_primary_colours_generic_fast()
107 memcpy(ADDR(i,j+y1),ADDR(x1,y1),bpp); in draw_primary_colours_generic_fast()
113 static void draw_primary_colours_generic_ultrafast(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2) in draw_primary_colours_generic_ultrafast() argument
116 int y3=(y1*2+y2)/3,y4=(y1+y2*2)/3; in draw_primary_colours_generic_ultrafast()
118 rfbFillRect(s,x1,y1,x2,y3,f.redMax<<f.redShift); in draw_primary_colours_generic_ultrafast()