diff options
author | Ilia Mirkin <[email protected]> | 2016-11-18 09:52:41 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-11-28 20:14:48 -0500 |
commit | 5582610ea190e52e49c60aa8fe18bebfe2466cde (patch) | |
tree | 2889e8b2ce3c9cb975ce42ba5a5394d023753ec7 /src | |
parent | 6bc8bef1a176f65cc35d7c573c0a99427eb5a3fd (diff) |
swr: [rasterizer memory] add support for clearing Z32F_X32 and Z16
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Tim Rowley <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp b/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp index 717d12cef9d..8501e21eded 100644 --- a/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp +++ b/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp @@ -282,7 +282,9 @@ void StoreHotTileClear( memset(sStoreTilesClearDepthTable, 0, sizeof(sStoreTilesClearDepthTable)); \ \ sStoreTilesClearDepthTable[R32_FLOAT] = StoreMacroTileClear<R32_FLOAT, R32_FLOAT>::StoreClear; \ + sStoreTilesClearDepthTable[R32_FLOAT_X8X24_TYPELESS] = StoreMacroTileClear<R32_FLOAT, R32_FLOAT_X8X24_TYPELESS>::StoreClear; \ sStoreTilesClearDepthTable[R24_UNORM_X8_TYPELESS] = StoreMacroTileClear<R32_FLOAT, R24_UNORM_X8_TYPELESS>::StoreClear; \ + sStoreTilesClearDepthTable[R16_UNORM] = StoreMacroTileClear<R32_FLOAT, R16_UNORM>::StoreClear; \ ////////////////////////////////////////////////////////////////////////// /// @brief Sets up tables for ClearTile |