Lines Matching refs:width
103 GX_VALUE width; in _gx_canvas_line_draw() local
216 width = (GX_VALUE)((brush_width + 1) / 2); in _gx_canvas_line_draw()
220 width = (GX_VALUE)(width + 1); in _gx_canvas_line_draw()
224 bound.gx_rectangle_top = (GX_VALUE)(bound.gx_rectangle_top - width); in _gx_canvas_line_draw()
225 bound.gx_rectangle_left = (GX_VALUE)(bound.gx_rectangle_left - width); in _gx_canvas_line_draw()
226 bound.gx_rectangle_right = (GX_VALUE)(bound.gx_rectangle_right + width); in _gx_canvas_line_draw()
227 bound.gx_rectangle_bottom = (GX_VALUE)(bound.gx_rectangle_bottom + width); in _gx_canvas_line_draw()
261 width = (GX_VALUE)((clip_rect.gx_rectangle_left - x_start) & 0x1F); in _gx_canvas_line_draw()
262 context -> gx_draw_context_brush.gx_brush_pattern_mask >>= width; in _gx_canvas_line_draw()
273 width = (GX_VALUE)((x_end - clip_rect.gx_rectangle_right) & 0x1F); in _gx_canvas_line_draw()
274 if ((context -> gx_draw_context_brush.gx_brush_pattern_mask >> width) == 0) in _gx_canvas_line_draw()
276 context -> gx_draw_context_brush.gx_brush_pattern_mask <<= (32 - width); in _gx_canvas_line_draw()
280 context -> gx_draw_context_brush.gx_brush_pattern_mask >>= width; in _gx_canvas_line_draw()
301 width = (GX_VALUE)((clip_rect.gx_rectangle_top - y_start) & 0x1F); in _gx_canvas_line_draw()
302 context -> gx_draw_context_brush.gx_brush_pattern_mask >>= width; in _gx_canvas_line_draw()
313 width = (GX_VALUE)((y_end - clip_rect.gx_rectangle_bottom) & 0x1F); in _gx_canvas_line_draw()
314 if ((context -> gx_draw_context_brush.gx_brush_pattern_mask >> width) == 0) in _gx_canvas_line_draw()
316 context -> gx_draw_context_brush.gx_brush_pattern_mask <<= (32 - width); in _gx_canvas_line_draw()
320 context -> gx_draw_context_brush.gx_brush_pattern_mask >>= width; in _gx_canvas_line_draw()