diff options
author | Eric Anholt <[email protected]> | 2015-06-15 11:41:06 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-06-16 15:15:14 -0700 |
commit | 596532cc7d477671f87116e0788b4214ae1d0559 (patch) | |
tree | b1abc12a807fa873bc43bd1eb43f362d0c369f66 /src | |
parent | 6dd55b49090da22d3a8e9226507a95e914eaf10f (diff) |
vc4: Drop the unused "stride" field of surfaces.
We're always looking at the slice anyway, when we would have needed it.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_resource.h | 1 |
1 files changed, 0 insertions, 1 deletions
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; }; |