diff options
author | Jakob Bornecrantz <[email protected]> | 2010-11-29 20:53:26 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-12-02 01:34:14 +0100 |
commit | de3ff5af49369d187d88e5399f388c6e48c5384f (patch) | |
tree | 502fba325dde95bfa33a5e888bbd6754369bcd70 /src/gallium/drivers/i915/TODO | |
parent | 442e567aa0f0cf91cbd30ffdfc74d281d619dd5e (diff) |
i915g: Make sure that new vbo gets updated
Malloc likes to reuse old address as soon as possible this would cause the
new vbo buffer to get the same address as the old. So make sure we set it to
NULL when we allocate a new one. This fixes ipers which will fill up a couple
of VBO buffers per frame.
Signed-off-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/drivers/i915/TODO')
-rw-r--r-- | src/gallium/drivers/i915/TODO | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/i915/TODO b/src/gallium/drivers/i915/TODO index 7fa407c150e..94c428bebf8 100644 --- a/src/gallium/drivers/i915/TODO +++ b/src/gallium/drivers/i915/TODO @@ -18,10 +18,6 @@ Random list of problems with i915g: Texture sampling from Y-tiled buffers seems to work, though (save above problems). -- Review buffer usage/cache domain handling in the winsys. Related: vbo cache - coherency is bunk: openarena tends to have a bunch of flatshaded triangles - popping up all over the screen. - - Need to validate buffers before usage. Currently do_exec on the batchbuffer can fail with -ENOSPC. |