From 84abf77c67a6a7b809040fba5d69f8429d6e76e3 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Sun, 22 Apr 2018 21:44:40 -0700 Subject: [PATCH] iris: hacky flushing for now --- src/gallium/drivers/iris/iris_draw.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/gallium/drivers/iris/iris_draw.c b/src/gallium/drivers/iris/iris_draw.c index d00419ad8d5..ccb55164387 100644 --- a/src/gallium/drivers/iris/iris_draw.c +++ b/src/gallium/drivers/iris/iris_draw.c @@ -36,6 +36,20 @@ iris_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info) { struct iris_context *ice = (struct iris_context *) ctx; + // XXX: actually do brw_cache_flush_for_* + iris_emit_pipe_control_flush(&ice->render_batch, + PIPE_CONTROL_DEPTH_CACHE_FLUSH | + PIPE_CONTROL_RENDER_TARGET_FLUSH | + PIPE_CONTROL_CS_STALL); + + iris_emit_pipe_control_flush(&ice->render_batch, + PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE | + PIPE_CONTROL_CONST_CACHE_INVALIDATE); + + iris_cache_sets_clear(&ice->render_batch); + // XXX: ^^^ + + iris_update_compiled_shaders(ice); ice->vtbl.upload_render_state(ice, &ice->render_batch, info); } -- 2.30.2