mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
swr: [rasterizer] Small warning cleanup
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
b39c530f88
commit
2be7c3e780
2 changed files with 4 additions and 8 deletions
|
|
@ -1125,7 +1125,10 @@ static void TessellationStages(
|
|||
{
|
||||
simdvector prim[3]; // Only deal with triangles, lines, or points
|
||||
RDTSC_START(FEPAAssemble);
|
||||
bool assemble = tessPa.Assemble(VERTEX_POSITION_SLOT, prim);
|
||||
#if SWR_ENABLE_ASSERTS
|
||||
bool assemble =
|
||||
#endif
|
||||
tessPa.Assemble(VERTEX_POSITION_SLOT, prim);
|
||||
RDTSC_STOP(FEPAAssemble, 1, 0);
|
||||
SWR_ASSERT(assemble);
|
||||
|
||||
|
|
|
|||
|
|
@ -163,13 +163,6 @@ struct JitManager
|
|||
StructType* mV4FP32Ty;
|
||||
StructType* mV4Int32Ty;
|
||||
|
||||
// helper scalar function types
|
||||
FunctionType* mUnaryFPTy;
|
||||
FunctionType* mBinaryFPTy;
|
||||
FunctionType* mTrinaryFPTy;
|
||||
FunctionType* mUnaryIntTy;
|
||||
FunctionType* mBinaryIntTy;
|
||||
|
||||
Type* mSimtFP32Ty;
|
||||
Type* mSimtInt32Ty;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue