summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2019-11-07 17:48:32 +0100
committerErik Faye-Lund <[email protected]>2019-11-12 13:30:35 +0000
commit5b09a7e2e48c9940fea96beb0d4ce54f99ac4e30 (patch)
tree715fbacf9c4a23cc9c0bf6b1ddb65dff3d36f0bf
parente1c87bbb4bcaa9b5946bc88f9f5d7868372d8400 (diff)
zink: remove no-longer-needed hack
It seems whatever was causing this is no longer an issue. So let's get rid of the hack here. Signed-off-by: Erik Faye-Lund <[email protected]>
-rw-r--r--src/gallium/drivers/zink/zink_context.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gallium/drivers/zink/zink_context.c b/src/gallium/drivers/zink/zink_context.c
index 2be6ce351be..ffc24daf159 100644
--- a/src/gallium/drivers/zink/zink_context.c
+++ b/src/gallium/drivers/zink/zink_context.c
@@ -1311,11 +1311,6 @@ blit_resolve(struct zink_context *ctx, const struct pipe_blit_info *info)
dst->image, dst->layout,
1, &region);
- /* HACK: I have no idea why this is needed, but without it ioquake3
- * randomly keeps fading to black.
- */
- flush_batch(ctx);
-
return true;
}
@@ -1391,11 +1386,6 @@ blit_native(struct zink_context *ctx, const struct pipe_blit_info *info)
1, &region,
filter(info->filter));
- /* HACK: I have no idea why this is needed, but without it ioquake3
- * randomly keeps fading to black.
- */
- flush_batch(ctx);
-
return true;
}