projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ab6ab8
)
freedreno: avoid unneccessary batch flush
author
Rob Clark
<robdclark@gmail.com>
Sun, 19 Nov 2017 21:45:04 +0000
(16:45 -0500)
committer
Rob Clark
<robdclark@gmail.com>
Sun, 3 Dec 2017 19:17:41 +0000
(14:17 -0500)
In some cases we can end up trying to add a write dependency on ourself,
which shouldn't trigger a flush.
Avoids an extra couple flushes per from in stk.
Signed-off-by: Rob Clark <robdclark@gmail.com>
src/gallium/drivers/freedreno/freedreno_batch.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/freedreno/freedreno_batch.c
b/src/gallium/drivers/freedreno/freedreno_batch.c
index
eff5e8d
..
9c66dc9
100644
(file)
--- a/
src/gallium/drivers/freedreno/freedreno_batch.c
+++ b/
src/gallium/drivers/freedreno/freedreno_batch.c
@@
-393,6
+393,8
@@
fd_batch_resource_used(struct fd_batch *batch, struct fd_resource *rsc, bool wri
struct fd_batch *dep;
foreach_batch(dep, cache, rsc->batch_mask) {
struct fd_batch *b = NULL;
+ if (dep == batch)
+ continue;
/* note that batch_add_dep could flush and unref dep, so
* we need to hold a reference to keep it live for the
* fd_bc_invalidate_batch()