diff options
author | Jason Ekstrand <[email protected]> | 2016-08-27 21:57:51 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-09-12 19:42:57 -0700 |
commit | 2fc9c7e3d9b2bcd65c9e192bc11d3c87835f85dc (patch) | |
tree | 1f064d488bbe244eb91000e0094ba704f5548b5d /src/intel/blorp/blorp.h | |
parent | 2dba5489ae82161ebbf1d6db3e63b27b45c17eae (diff) |
intel/blorp: Take a destination swizzle in blorp_blit
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/blorp/blorp.h')
-rw-r--r-- | src/intel/blorp/blorp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/blorp/blorp.h b/src/intel/blorp/blorp.h index 173d4faf5f2..d562b17c268 100644 --- a/src/intel/blorp/blorp.h +++ b/src/intel/blorp/blorp.h @@ -101,7 +101,7 @@ blorp_blit(struct blorp_batch *batch, enum isl_format src_format, struct isl_swizzle src_swizzle, const struct blorp_surf *dst_surf, unsigned dst_level, unsigned dst_layer, - enum isl_format dst_format, + enum isl_format dst_format, struct isl_swizzle dst_swizzle, float src_x0, float src_y0, float src_x1, float src_y1, float dst_x0, float dst_y0, |