diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2009-02-25 05:22:25 -0500 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2009-02-25 05:22:25 -0500 |
commit | 0cdd4f50b175c4747b25a22335c4092c9de11018 (patch) | |
tree | 56ec2708cd4929c229050f2cfd400d093f358c68 /TODO | |
parent | f7d76a2d16db28c980f74ad16079b018502dfa17 (diff) |
TODO
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 44 |
1 files changed, 39 insertions, 5 deletions
@@ -1,5 +1,39 @@ -- Note: when we set a mode, all allocated memory should be considered - released. +- Acceleration + - Blits and solid fill + + - XAA and the shadow buffer will not work together, because the + shadow buffer updates in the block handler, so if we got any XAA + calls in between, things would get messed up. + + Current plan: + - Add our own damage tracker that produces raw rectangles + - Whenever it fires, submit the copy immediately + + - Wrap the necessary ops in such a way that the original + implementation gets called first. The original implementation + will use fb, which will produce damage, which will get + submitted. + + If we decide to accelerate a particular operation, first set + a flag that the immediately following damage event should not + result in spice protocol being sent. Ie., + + on_op: + qxl->enable_copying = FALSE + + call original; + + send acceleration command + + qxl->enable_copying = TRUE + + 1. Get damage added, out of CreateScreenResources + 2. Make sure it works + 3. Submit copies and disable shadow + 4. Delete shadow + 5. Wrap some of the ops, or use XAA? + +- Coding style fixes - Better malloc() implementation - Take dmalloc() from the windows driver? @@ -11,9 +45,6 @@ - Possibly has to do with the timings it reports. RandR only allows 8x6 and 6x4. -- Acceleration - - Blits and solid fill - - Only compile mmtest if glib is installed Or maybe just get rid of mmtest.c @@ -23,6 +54,9 @@ Done: Question: +- Note: when we set a mode, all allocated memory should be considered + released. + - What is the "vram" PCI range used for? As I read the Windows driver, it can be mapped with the ioctl |