aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/swr/swr_memory.h
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2016-10-07 12:07:07 -0500
committerTim Rowley <[email protected]>2016-10-11 11:22:04 -0500
commit2550b04179614da4c71dbef195d06a7f53273438 (patch)
tree34f2f9b7b9083500c34567052fb7de49aaf16662 /src/gallium/drivers/swr/swr_memory.h
parent0a606a400fe382a9bc726beef269b47f4485d85f (diff)
swr: [rasterizer memory] split load/store for compile speed
Signed-off-by: Tim Rowley <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/swr_memory.h')
-rw-r--r--src/gallium/drivers/swr/swr_memory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/swr/swr_memory.h b/src/gallium/drivers/swr/swr_memory.h
index e68dce0f8d1..9ef468a90d4 100644
--- a/src/gallium/drivers/swr/swr_memory.h
+++ b/src/gallium/drivers/swr/swr_memory.h
@@ -30,7 +30,7 @@ void LoadHotTile(
UINT x, UINT y, uint32_t renderTargetArrayIndex,
uint8_t *pDstHotTile);
-void StoreHotTile(
+void StoreHotTileToSurface(
SWR_SURFACE_STATE *pDstSurface,
SWR_FORMAT srcFormat,
SWR_RENDERTARGET_ATTACHMENT renderTargetIndex,
@@ -69,7 +69,7 @@ swr_StoreHotTile(HANDLE hPrivateContext,
swr_draw_context *pDC = (swr_draw_context*)hPrivateContext;
SWR_SURFACE_STATE *pDstSurface = &pDC->renderTargets[renderTargetIndex];
- StoreHotTile(pDstSurface, srcFormat, renderTargetIndex, x, y, renderTargetArrayIndex, pSrcHotTile);
+ StoreHotTileToSurface(pDstSurface, srcFormat, renderTargetIndex, x, y, renderTargetArrayIndex, pSrcHotTile);
}
INLINE void