projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62bcf2e
)
i915g: Don't flush after blit
author
Jakob Bornecrantz
<wallbraker@gmail.com>
Sun, 4 Jul 2010 08:54:20 +0000
(09:54 +0100)
committer
Jakob Bornecrantz
<wallbraker@gmail.com>
Sun, 4 Jul 2010 12:32:01 +0000
(13:32 +0100)
src/gallium/drivers/i915/i915_blit.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/i915/i915_blit.c
b/src/gallium/drivers/i915/i915_blit.c
index 0a1b3e0d66bb37a3dfe3a4a0aa7938eeea52a7e9..cdf20c0055a73e124e34c746d55ea369d59350ff 100644
(file)
--- a/
src/gallium/drivers/i915/i915_blit.c
+++ b/
src/gallium/drivers/i915/i915_blit.c
@@
-76,7
+76,6
@@
i915_fill_blit(struct i915_context *i915,
OUT_BATCH(((y + h) << 16) | (x + w));
OUT_RELOC(dst_buffer, I915_USAGE_2D_TARGET, dst_offset);
OUT_BATCH(color);
- FLUSH_BATCH(NULL);
}
void
@@
-143,5
+142,4
@@
i915_copy_blit(struct i915_context *i915,
OUT_BATCH((src_y << 16) | src_x);
OUT_BATCH(((int) src_pitch & 0xffff));
OUT_RELOC(src_buffer, I915_USAGE_2D_SOURCE, src_offset);
- FLUSH_BATCH(NULL);
}