HomeSort by relevance Sort by last modified time
    Searched refs:renderTargetArrayIndex (Results 1 - 14 of 14) sorted by null

  /external/mesa3d/src/gallium/drivers/swr/
swr_memory.h 30 UINT x, UINT y, uint32_t renderTargetArrayIndex,
37 UINT x, UINT y, uint32_t renderTargetArrayIndex,
45 uint32_t renderTargetArrayIndex,
53 uint32_t renderTargetArrayIndex, uint8_t* pDstHotTile)
59 LoadHotTile(pSrcSurface, dstFormat, renderTargetIndex, x, y, renderTargetArrayIndex, pDstHotTile);
67 uint32_t renderTargetArrayIndex, uint8_t* pSrcHotTile)
73 StoreHotTileToSurface(pDstSurface, srcFormat, renderTargetIndex, x, y, renderTargetArrayIndex, pSrcHotTile);
81 uint32_t renderTargetArrayIndex,
88 StoreHotTileClear(pDstSurface, renderTargetIndex, x, y, renderTargetArrayIndex, pClearColor);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
LoadTile.cpp 60 uint32_t x, uint32_t y, uint32_t renderTargetArrayIndex,
71 // force 0 if requested renderTargetArrayIndex is OOB
72 if (renderTargetArrayIndex >= pSrcSurface->depth)
74 renderTargetArrayIndex = 0;
156 pfnLoadTiles(pSrcSurface, pDstHotTile, x, y, renderTargetArrayIndex);
StoreTile.cpp 65 uint32_t x, uint32_t y, uint32_t renderTargetArrayIndex,
73 // force 0 if requested renderTargetArrayIndex is OOB
74 if (renderTargetArrayIndex >= pDstSurface->depth)
76 renderTargetArrayIndex = 0;
117 pfnStoreTiles(pSrcHotTile, pDstSurface, x, y, renderTargetArrayIndex);
StoreTile.h     [all...]
ClearTile.cpp 61 uint32_t renderTargetArrayIndex)
71 x, y, pDstSurface->arrayIndex + renderTargetArrayIndex,
72 pDstSurface->arrayIndex + renderTargetArrayIndex,
120 UINT x, UINT y, uint32_t renderTargetArrayIndex)
143 StoreRasterTileClear<SrcFormat, DstFormat>::StoreClear(dstFormattedColor, dstBytesPerPixel, pDstSurface, (x + col), (y + row), renderTargetArrayIndex);
160 uint32_t renderTargetArrayIndex,
185 pfnStoreTilesClear(pClearColor, pDstSurface, x, y, renderTargetArrayIndex);
LoadTile.h 109 uint32_t x, uint32_t y, uint32_t sampleNum, uint32_t renderTargetArrayIndex) // (x, y) pixel coordinate to start of raster tile.
122 uint8_t* pSrc = (uint8_t*)ComputeSurfaceAddress<false, true>(x + rx, y + ry, pSrcSurface->arrayIndex + renderTargetArrayIndex,
123 pSrcSurface->arrayIndex + renderTargetArrayIndex, sampleNum,
151 uint32_t x, uint32_t y, uint32_t renderTargetArrayIndex)
163 loadRasterTileFn(pSrcSurface, pDstHotTile, (x + col), (y + row), sampleNum, renderTargetArrayIndex);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
tilemgr.cpp 87 uint32_t renderTargetArrayIndex)
106 hotTile.renderTargetArrayIndex = renderTargetArrayIndex;
134 if (renderTargetArrayIndex != hotTile.renderTargetArrayIndex)
167 x * KNOB_MACROTILE_X_DIM, y * KNOB_MACROTILE_Y_DIM, hotTile.renderTargetArrayIndex, hotTile.pBuffer);
171 x * KNOB_MACROTILE_X_DIM, y * KNOB_MACROTILE_Y_DIM, renderTargetArrayIndex, hotTile.pBuffer);
173 hotTile.renderTargetArrayIndex = renderTargetArrayIndex;
200 hotTile.renderTargetArrayIndex = 0
    [all...]
api.h 120 uint32_t x, uint32_t y, uint32_t renderTargetArrayIndex, uint8_t *pDstHotTile);
132 uint32_t x, uint32_t y, uint32_t renderTargetArrayIndex, uint8_t *pSrcHotTile);
140 /// @param renderTargetArrayIndex - render target array offset from arrayIndex
144 uint32_t x, uint32_t y, uint32_t renderTargetArrayIndex, const float* pClearColor);
563 /// @param renderTargetArrayIndex - the RT array index to clear
571 uint32_t renderTargetArrayIndex,
tilemgr.h 262 uint32_t renderTargetArrayIndex; // current render target array index loaded
309 uint32_t renderTargetArrayIndex = 0);
context.h 66 uint32_t renderTargetArrayIndex;
107 uint32_t renderTargetArrayIndex;
backend.cpp 137 INLINE void ClearMacroTile(DRAW_CONTEXT *pDC, SWR_RENDERTARGET_ATTACHMENT rt, uint32_t macroTile, uint32_t renderTargetArrayIndex, DWORD clear[4], const SWR_RECT& rect)
207 HOTTILE *pHotTile = pDC->pContext->pHotTileMgr->GetHotTile(pDC->pContext, pDC, macroTile, rt, true, numSamples, renderTargetArrayIndex);
252 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, (SWR_RENDERTARGET_ATTACHMENT)rt, true, numSamples, pClear->renderTargetArrayIndex);
265 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, SWR_ATTACHMENT_DEPTH, true, numSamples, pClear->renderTargetArrayIndex);
272 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, SWR_ATTACHMENT_STENCIL, true, numSamples, pClear->renderTargetArrayIndex);
303 pfnClearTiles(pDC, (SWR_RENDERTARGET_ATTACHMENT)rt, macroTile, pClear->renderTargetArrayIndex, clearData, pClear->rect);
314 pfnClearTiles(pDC, SWR_ATTACHMENT_DEPTH, macroTile, pClear->renderTargetArrayIndex, clearData, pClear->rect);
323 pfnClearTiles(pDC, SWR_ATTACHMENT_STENCIL, macroTile, pClear->renderTargetArrayIndex, clearData, pClear->rect);
366 pfnClearTiles(pDC, attachment, macroTile, pHotTile->renderTargetArrayIndex, pHotTile->clearData, pDesc->rect);
375 attachment, destX, destY, pHotTile->renderTargetArrayIndex, pHotTile->pBuffer)
    [all...]
rasterizer.cpp 41 void GetRenderHotTiles(DRAW_CONTEXT *pDC, uint32_t macroID, uint32_t x, uint32_t y, RenderOutputBuffers &renderBuffers, uint32_t renderTargetArrayIndex);
    [all...]
binner.cpp     [all...]
api.cpp     [all...]

Completed in 318 milliseconds