aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/lima
diff options
context:
space:
mode:
authorRoman Stratiienko <[email protected]>2019-09-02 17:46:22 +0300
committerVasily Khoruzhick <[email protected]>2019-09-04 00:32:04 +0000
commitef621a73f720e1956ca356c1147d3b3dc680da0d (patch)
treee508dca9d681e830b6008278e05b2fbb52a4b05d /src/gallium/drivers/lima
parent1c1890fa707789aaf7e1ef265c521799b2f348c5 (diff)
lima: Return fence unconditionally
Based on the vc4 implementation. Fixes Android RenderEngine::flush() routine: android.googlesource.com/platform/frameworks/native/+/refs/tags/android-o-mr1-iot-release-smart-clock-fcs/services/surfaceflinger/RenderEngine/RenderEngine.cpp#225 Signed-off-by: Roman Stratiienko <[email protected]> Reviewed-by: Qiang Yu <[email protected]>
Diffstat (limited to 'src/gallium/drivers/lima')
-rw-r--r--src/gallium/drivers/lima/lima_draw.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/drivers/lima/lima_draw.c b/src/gallium/drivers/lima/lima_draw.c
index d39e198cd9b..3b8f7526f32 100644
--- a/src/gallium/drivers/lima/lima_draw.c
+++ b/src/gallium/drivers/lima/lima_draw.c
@@ -1693,10 +1693,8 @@ lima_pipe_flush(struct pipe_context *pctx, struct pipe_fence_handle **fence,
unsigned flags)
{
struct lima_context *ctx = lima_context(pctx);
- if (!lima_ctx_dirty(ctx))
- return;
-
- _lima_flush(ctx, flags & PIPE_FLUSH_END_OF_FRAME);
+ if (lima_ctx_dirty(ctx))
+ _lima_flush(ctx, flags & PIPE_FLUSH_END_OF_FRAME);
if (fence) {
int fd;