From 5dd0b8d3c635b67d8274c64653d825b8855b8167 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Sat, 12 Nov 2016 03:30:38 -0500 Subject: [PATCH] swr: [rasterizer memory] fix store tile for 128-bit ymajor tiling Noticed by inspection. Signed-off-by: Ilia Mirkin Reviewed-by: Bruce Cherniak --- src/gallium/drivers/swr/rasterizer/memory/StoreTile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;