diff options
author | Pohjolainen, Topi <[email protected]> | 2016-10-11 22:26:35 +0300 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-11-17 12:03:24 -0800 |
commit | 7c560e8ccc60f26c145fbbcb281e431e65bbce55 (patch) | |
tree | 20fd3c08ac5f9714176cf677238d08d331774445 /src/mesa/drivers | |
parent | d7bd8c15d66a438a6680522915f746ce75e8d60c (diff) |
intel/blorp: Add plumbing for color resolve slice details
Signed-off-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index f0ad0743cdf..2771f1466db 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -945,7 +945,7 @@ brw_blorp_resolve_color(struct brw_context *brw, struct intel_mipmap_tree *mt) struct blorp_batch batch; blorp_batch_init(&brw->blorp, &batch, brw, 0); - blorp_ccs_resolve(&batch, &surf, + blorp_ccs_resolve(&batch, &surf, 0 /* level */, 0 /* layer */, brw_blorp_to_isl_format(brw, format, true)); blorp_batch_finish(&batch); |