diff options
author | Christian Gmeiner <[email protected]> | 2019-09-27 13:08:24 +0200 |
---|---|---|
committer | Christian Gmeiner <[email protected]> | 2019-09-27 18:22:08 +0000 |
commit | fd1ed6f4f81347aa5ab87c4eb0eadab01fe5f0a5 (patch) | |
tree | 296ae831e83bcbcebc9ed8512dca1e37e414567f | |
parent | e456a053c3d6ec4f3d4581edcad05c72dfdaa407 (diff) |
etnaviv: etna_resource_copy_region(..): drop assert
We are using util_resource_copy_region(..) as fallback which supports
different formats for src and dst. Improves the experience when running
deqp or piglit with a debug build.
Signed-off-by: Christian Gmeiner <[email protected]>
Reviewed-by: Jonathan Marek <[email protected]>
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_clear_blit.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c b/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c index df12e609ac9..4a3f62ac133 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c +++ b/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c @@ -114,9 +114,6 @@ etna_resource_copy_region(struct pipe_context *pctx, struct pipe_resource *dst, { struct etna_context *ctx = etna_context(pctx); - /* The resource must be of the same format. */ - assert(src->format == dst->format); - /* XXX we can use the RS as a literal copy engine here * the only complexity is tiling; the size of the boxes needs to be aligned * to the tile size |