Changeset e1c6d5df in mainline for uspace/drv


Ignore:
Timestamp:
2012-11-29T07:44:58Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3194d83
Parents:
ff98ce8 (diff), 82edef2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge from lp:~petr-koupy/helenos/gui-optim.

The main improvements are:

  • significantly faster rendering (making qemu/non-KVM usable) if user limits himself just to window movement and resizing (i.e. avoiding rotation, scaling and transparency)
  • preview of the result of window transformation is depicted by a "ghost" frame following the mouse pointer
  • changing of window focus feels more natural and intuitive (mouse click handler behaves more like in mainstream operating systems, window titles changes color to reflect whether they have focus or not)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/fb/kfb/port.c

    rff98ce8 re1c6d5df  
    163163                /* Faster damage routine ignoring offsets. */
    164164                for (sysarg_t y = y0; y < height + y0; ++y) {
     165                        pixel_t *pixel = pixelmap_pixel_at(map, x0, y);
    165166                        for (sysarg_t x = x0; x < width + x0; ++x) {
    166                                 kfb.pixel2visual(kfb.addr + FB_POS(x, y),
    167                                     *pixelmap_pixel_at(map, x, y));
     167                                kfb.pixel2visual(kfb.addr + FB_POS(x, y), *pixel++);
    168168                        }
    169169                }
Note: See TracChangeset for help on using the changeset viewer.