Changes in uspace/lib/draw/source.c [071fefec:f698054] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/source.c
r071fefec rf698054 92 92 bool source_is_fast(source_t *source) 93 93 { 94 return ( (source->mask == NULL) &&95 (source->alpha == (pixel_t) PIXEL(255, 0, 0, 0)) &&96 (source->texture != NULL) &&97 (source->texture_tile == false) &&98 (transform_is_fast(&source->transform)));94 return (source->mask == NULL) 95 && (source->alpha == (pixel_t) PIXEL(255, 0, 0, 0)) 96 && (source->texture != NULL) 97 && (source->texture_tile == false) 98 && transform_is_fast(&source->transform); 99 99 } 100 100 … … 103 103 assert(source_is_fast(source)); 104 104 105 long _x = (long) (x + source->transform.m atrix[0][2]);106 long _y = (long) (y + source->transform.m atrix[1][2]);105 long _x = (long) (x + source->transform.m[0][2]); 106 long _y = (long) (y + source->transform.m[1][2]); 107 107 108 108 return pixelmap_pixel_at(
Note:
See TracChangeset
for help on using the changeset viewer.