vrepeat           269 core/gui_draw.c static void draw_1pixel_simple(coord x, coord y, int px, int vrepeat)
vrepeat           271 core/gui_draw.c     if ((x < 0) || (y < 0) || (x >= camera_screen.width) || (y+vrepeat >= camera_screen.height)/* || ((x == 0) && (y == 0))*/) return;
vrepeat           305 core/gui_draw.c             if (!vrepeat) return;
vrepeat           306 core/gui_draw.c             vrepeat--;
vrepeat           330 core/gui_draw.c             if (!vrepeat) return;
vrepeat           331 core/gui_draw.c             vrepeat--;
vrepeat           341 core/gui_draw.c static void draw_2pixels_simple(coord x, coord y, int px, int vrepeat)
vrepeat           343 core/gui_draw.c     if ((x < 0) || (y < 0) || (x+1 >= camera_screen.width) || (y+vrepeat >= camera_screen.height)/* || ((x == 0) && (y == 0))*/) return;
vrepeat           384 core/gui_draw.c         if (!vrepeat) return;
vrepeat           385 core/gui_draw.c         vrepeat--;