diff options
author | Jason Ekstrand <[email protected]> | 2017-06-13 13:35:15 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-07-17 13:48:38 -0700 |
commit | 828c437078365d0a23a0203fa38b5e7ef6e17a07 (patch) | |
tree | 54dba973d6b1c5e3f49853989a5d37f91bbd2657 /src/mesa | |
parent | 766784ef82bcd459cc8667b0ff92dfcb7fe8e317 (diff) |
intel/isl: Add a row_pitch parameter to surf_get_ccs_surf
Reviewed-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index f08c3e343a8..47475689f9c 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -1836,7 +1836,8 @@ intel_miptree_alloc_ccs(struct brw_context *brw, * calculate equivalent CCS surface against it. */ intel_miptree_get_isl_surf(brw, mt, &temp_main_surf); - if (!isl_surf_get_ccs_surf(&brw->isl_dev, &temp_main_surf, &temp_ccs_surf)) + if (!isl_surf_get_ccs_surf(&brw->isl_dev, &temp_main_surf, + &temp_ccs_surf, 0)) return false; assert(temp_ccs_surf.size && |