mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
swr: [rasterizer core] Fix unused variable warnings
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
da7aa39f93
commit
217b791a44
3 changed files with 1 additions and 10 deletions
|
|
@ -788,7 +788,6 @@ extern PFN_BACKEND_FUNC gBackendSingleSample[SWR_INPUT_COVERAGE_COUNT][2][2];
|
|||
extern PFN_BACKEND_FUNC gBackendSampleRateTable[SWR_MULTISAMPLE_TYPE_COUNT][SWR_INPUT_COVERAGE_COUNT][2][2];
|
||||
void SetupPipeline(DRAW_CONTEXT *pDC)
|
||||
{
|
||||
SWR_CONTEXT* pContext = pDC->pContext;
|
||||
DRAW_STATE* pState = pDC->pState;
|
||||
const SWR_RASTSTATE &rastState = pState->state.rastState;
|
||||
const SWR_PS_STATE &psState = pState->state.psState;
|
||||
|
|
@ -1630,6 +1629,7 @@ void SWR_API SwrEndFrame(
|
|||
{
|
||||
SWR_CONTEXT *pContext = GetContext(hContext);
|
||||
DRAW_CONTEXT* pDC = GetDrawContext(pContext);
|
||||
(void)pDC; // var used
|
||||
|
||||
RDTSC_ENDFRAME();
|
||||
AR_API_EVENT(FrameEndEvent(pContext->frameCount, pDC->drawId));
|
||||
|
|
|
|||
|
|
@ -872,7 +872,6 @@ void BackendNullPS(DRAW_CONTEXT *pDC, uint32_t workerId, uint32_t x, uint32_t y,
|
|||
|
||||
AR_BEGIN(BENullBackend, pDC->drawId);
|
||||
///@todo: handle center multisample pattern
|
||||
typedef SwrBackendTraits<sampleCountT, false> T;
|
||||
AR_BEGIN(BESetup, pDC->drawId);
|
||||
|
||||
const API_STATE &state = GetApiState(pDC);
|
||||
|
|
|
|||
|
|
@ -2209,7 +2209,6 @@ void BinPostSetupLines(
|
|||
|
||||
const API_STATE& state = GetApiState(pDC);
|
||||
const SWR_RASTSTATE& rastState = state.rastState;
|
||||
const SWR_FRONTEND_STATE& feState = state.frontendState;
|
||||
const SWR_GS_STATE& gsState = state.gsState;
|
||||
|
||||
// Select attribute processor
|
||||
|
|
@ -2640,16 +2639,9 @@ void BinLines(
|
|||
simdscalari primID,
|
||||
simdscalari viewportIdx)
|
||||
{
|
||||
SWR_CONTEXT *pContext = pDC->pContext;
|
||||
|
||||
const API_STATE& state = GetApiState(pDC);
|
||||
const SWR_RASTSTATE& rastState = state.rastState;
|
||||
const SWR_FRONTEND_STATE& feState = state.frontendState;
|
||||
const SWR_GS_STATE& gsState = state.gsState;
|
||||
|
||||
// Select attribute processor
|
||||
PFN_PROCESS_ATTRIBUTES pfnProcessAttribs = GetProcessAttributesFunc(2,
|
||||
state.backendState.swizzleEnable, state.backendState.constantInterpolationMask);
|
||||
|
||||
simdscalar vRecipW[2] = { _simd_set1_ps(1.0f), _simd_set1_ps(1.0f) };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue