Changes in uspace/lib/draw/surface.c [6aeca0d:ba733e83] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/surface.c
r6aeca0d rba733e83 64 64 if (!pixbuf) { 65 65 if ((flags & SURFACE_FLAG_SHARED) == SURFACE_FLAG_SHARED) { 66 pixbuf = (pixel_t *) as_area_create(AS_AREA_ANY, 67 pixbuf_size, 68 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE, 69 AS_AREA_UNPAGED); 66 pixbuf = (pixel_t *) as_area_create(AS_AREA_ANY, pixbuf_size, 67 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE); 70 68 if (pixbuf == AS_MAP_FAILED) { 71 69 free(surface);
Note:
See TracChangeset
for help on using the changeset viewer.