thickness         822 core/gui_draw.c     int thickness;
thickness         828 core/gui_draw.c         thickness = ((flags & RECT_SHADOW_MASK) >> 4);
thickness         829 core/gui_draw.c         for (i=1; i<=thickness; i++)
thickness         832 core/gui_draw.c             draw_hline(x1+1, y2+i, x2 - x1 + thickness, COLOR_BLACK);
thickness         837 core/gui_draw.c     thickness = flags & RECT_BORDER_MASK;
thickness         838 core/gui_draw.c     for (i=0; i<thickness; i++)
thickness        1570 core/gui_draw.c     int thickness = RECT_BORDER2;
thickness        1572 core/gui_draw.c     int thickness = RECT_BORDER1;
thickness        1615 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2+1, y+y2+1, MAKE_COLOR(cb,cf), thickness);
thickness        1617 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2, y+y2, MAKE_COLOR(cb,cf), thickness);
thickness        1622 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2+1, y+y2+1, MAKE_COLOR(cb,cf), thickness|DRAW_FILLED);
thickness        1624 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2, y+y2, MAKE_COLOR(cb,cf), thickness|DRAW_FILLED);
thickness        1629 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2+1, y+y2+1, MAKE_COLOR(cb,cf), thickness|RECT_ROUND_CORNERS);
thickness        1631 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2, y+y2, MAKE_COLOR(cb,cf), thickness|RECT_ROUND_CORNERS);
thickness        1636 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2+1, y+y2+1, MAKE_COLOR(cb,cf), thickness|DRAW_FILLED|RECT_ROUND_CORNERS);
thickness        1638 core/gui_draw.c             draw_rectangle(x+x1, y+y1, x+x2, y+y2, MAKE_COLOR(cb,cf), thickness|DRAW_FILLED|RECT_ROUND_CORNERS);