diff options
author | Rob Clark <[email protected]> | 2016-12-09 18:23:10 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-12-18 13:47:54 -0500 |
commit | 6f93c75a47d80f3067e19fa3de4d54e5593a9d55 (patch) | |
tree | 4f7587fe5b0dd69ea49ea953006b6f50d896e043 /src/gallium/drivers/freedreno/freedreno_context.h | |
parent | d35022f24d5e53daa439fb5f024e81858e698a76 (diff) |
freedreno/a5xx: cargo-cult end-batch sequence more faithfully
Fixes some issues at least with GMEM bypass mode, where we'd sometimes
end up with some FS quads not hitting memory.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.h b/src/gallium/drivers/freedreno/freedreno_context.h index e83b208ab86..995e7d4c433 100644 --- a/src/gallium/drivers/freedreno/freedreno_context.h +++ b/src/gallium/drivers/freedreno/freedreno_context.h @@ -261,6 +261,7 @@ struct fd_context { /* optional, for GMEM bypass: */ void (*emit_sysmem_prep)(struct fd_batch *batch); + void (*emit_sysmem_fini)(struct fd_batch *batch); /* draw: */ bool (*draw_vbo)(struct fd_context *ctx, const struct pipe_draw_info *info); |