From: Ilia Mirkin Date: Sat, 12 Nov 2016 08:30:38 +0000 (-0500) Subject: swr: [rasterizer memory] fix store tile for 128-bit ymajor tiling X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5dd0b8d3c635b67d8274c64653d825b8855b8167;p=mesa.git swr: [rasterizer memory] fix store tile for 128-bit ymajor tiling Noticed by inspection. Signed-off-by: Ilia Mirkin Reviewed-by: Bruce Cherniak --- diff --git a/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h b/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h index 69e8784f6ca..558f0489d84 100644 --- a/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h +++ b/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h @@ -2175,7 +2175,7 @@ struct OptStoreRasterTile< TilingTraits, SrcFormat, Ds template struct OptStoreRasterTile< TilingTraits, SrcFormat, DstFormat> { - typedef StoreRasterTile, SrcFormat, DstFormat> GenericStoreTile; + typedef StoreRasterTile, SrcFormat, DstFormat> GenericStoreTile; #if USE_8x2_TILE_BACKEND static const size_t SRC_BYTES_PER_PIXEL = FormatTraits::bpp / 8;