mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 22:10:11 +01:00
swr: [rasterizer core] apply KNOB_TOSS_DRAW to more functions
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
6d212cccf0
commit
600528168b
1 changed files with 20 additions and 0 deletions
|
|
@ -1281,6 +1281,11 @@ void SwrInvalidateTiles(
|
|||
HANDLE hContext,
|
||||
uint32_t attachmentMask)
|
||||
{
|
||||
if (KNOB_TOSS_DRAW)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
SWR_CONTEXT *pContext = (SWR_CONTEXT*)hContext;
|
||||
DRAW_CONTEXT* pDC = GetDrawContext(pContext);
|
||||
|
||||
|
|
@ -1306,6 +1311,11 @@ void SwrDiscardRect(
|
|||
uint32_t attachmentMask,
|
||||
SWR_RECT rect)
|
||||
{
|
||||
if (KNOB_TOSS_DRAW)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
SWR_CONTEXT *pContext = (SWR_CONTEXT*)hContext;
|
||||
DRAW_CONTEXT* pDC = GetDrawContext(pContext);
|
||||
|
||||
|
|
@ -1367,6 +1377,11 @@ void SwrStoreTiles(
|
|||
SWR_RENDERTARGET_ATTACHMENT attachment,
|
||||
SWR_TILE_STATE postStoreTileState)
|
||||
{
|
||||
if (KNOB_TOSS_DRAW)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
RDTSC_START(APIStoreTiles);
|
||||
|
||||
SWR_CONTEXT *pContext = (SWR_CONTEXT*)hContext;
|
||||
|
|
@ -1392,6 +1407,11 @@ void SwrClearRenderTarget(
|
|||
float z,
|
||||
uint8_t stencil)
|
||||
{
|
||||
if (KNOB_TOSS_DRAW)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
RDTSC_START(APIClearRenderTarget);
|
||||
|
||||
SWR_CONTEXT *pContext = (SWR_CONTEXT*)hContext;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue