iris: hacky flushing for now

This commit is contained in:
Kenneth Graunke
2018-04-22 21:44:40 -07:00
parent 75a1639262
commit 84abf77c67
+14
View File
@@ -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);
}