From: Eric Anholt Date: Mon, 15 Jun 2015 18:41:06 +0000 (-0700) Subject: vc4: Drop the unused "stride" field of surfaces. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=596532cc7d477671f87116e0788b4214ae1d0559;p=mesa.git vc4: Drop the unused "stride" field of surfaces. We're always looking at the slice anyway, when we would have needed it. --- diff --git a/src/gallium/drivers/vc4/vc4_resource.h b/src/gallium/drivers/vc4/vc4_resource.h index a81c4704d54..ab8f5d3cd55 100644 --- a/src/gallium/drivers/vc4/vc4_resource.h +++ b/src/gallium/drivers/vc4/vc4_resource.h @@ -45,7 +45,6 @@ struct vc4_resource_slice { struct vc4_surface { struct pipe_surface base; uint32_t offset; - uint32_t stride; uint8_t tiling; };