Changes in uspace/lib/draw/drawctx.c [7dba813:75baf6e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/drawctx.c
r7dba813 r75baf6e 129 129 } 130 130 131 bool transfer_fast = source_is_fast(context->source) 132 && (context->shall_clip == false)133 && (context->mask == NULL)134 &&(context->compose == compose_src || context->compose == compose_over);131 bool transfer_fast = source_is_fast(context->source) && 132 (context->shall_clip == false) && 133 (context->mask == NULL) && 134 (context->compose == compose_src || context->compose == compose_over); 135 135 136 136 if (transfer_fast) { … … 188 188 * transferred to the original surface. */ 189 189 190 list_foreach(*((list_t *) path), link) { 191 path_step_t *step = (path_step_t *) link; 190 list_foreach(*((list_t *) path), link, path_step_t, step) { 192 191 switch (step->type) { 193 192 case PATH_STEP_MOVETO:
Note:
See TracChangeset
for help on using the changeset viewer.