Home
last modified time | relevance | path

Searched refs:gsState (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfrontend.cpp836 const SWR_GS_STATE* pState = &state.gsState; in GeometryShaderStage()
1184 SWR_ASSERT(state.gsState.gsEnable); in AllocateGsBuffers()
1186 const SWR_GS_STATE& gsState = state.gsState; in AllocateGsBuffers() local
1189 uint32_t vertexInBufferSize = gsState.inputVertStride * sizeof(simdvector) * vertsPerPrim; in AllocateGsBuffers()
1193 const uint32_t vertexBufferSize = gsState.instanceCount * gsState.allocationSize; in AllocateGsBuffers()
1201 uint32_t numSimdBatches = AlignUp(gsState.maxNumVerts, SIMD_WIDTH) / SIMD_WIDTH; in AllocateGsBuffers()
1203 numSimdBatches * gsState.outputVertexSize * sizeof(Vec4<SIMD_T>); in AllocateGsBuffers()
1207 if (state.gsState.isSingleStream) in AllocateGsBuffers()
1214 (uint8_t*)pArena->AllocAligned(AlignUp(gsState.maxNumVerts * 2, 32), 32); in AllocateGsBuffers()
Dapi.cpp649 pState->gsState = *pGSState; in SwrSetGsState()
1236 pState->gsState.gsEnable, in DrawInstanced()
1258 pState->gsState.gsEnable, in DrawInstanced()
1260 pState->gsState.outputTopology, in DrawInstanced()
1391 pState->gsState.gsEnable, in DrawIndexedInstance()
1417 pState->gsState.gsEnable, in DrawIndexedInstance()
1419 pState->gsState.outputTopology, in DrawIndexedInstance()
Dcontext.h251 SWR_GS_STATE gsState; in OSALIGNLINE() local
Dpa.h499 bool gsEnabled = pDC->pState->state.gsState.gsEnable; in PA_STATE_CUT()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_state.h79 SWR_GS_STATE gsState; member
Dswr_state.cpp1567 ctx->api.pfnSwrSetGsState(ctx->swrContext, &ctx->gs->gsState); in swr_update_derived()
Dswr_shader.cpp1496 SWR_GS_STATE *pGS = &ctx->gs->gsState; in CompileGS()