Home
last modified time | relevance | path

Searched refs:tsCtx (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dtessellator.h168 HANDLE tsCtx = pContextMem; in TSInitCtx() local
170 SWR_TS* pTessellator = new (tsCtx) SWR_TS(); in TSInitCtx()
171 SWR_ASSERT(pTessellator == tsCtx); in TSInitCtx()
175 return tsCtx; in TSInitCtx()
179 INLINE void SWR_API TSDestroyCtx(HANDLE tsCtx) ///< [IN] Tessellation context to be destroyed in TSDestroyCtx() argument
182 SWR_TS* pTessellator = (SWR_TS*)tsCtx; in TSDestroyCtx()
192 TSTessellate(HANDLE tsCtx, ///< [IN] Tessellation Context in TSTessellate() argument
197 SWR_TS* pTessellator = (SWR_TS*)tsCtx; in TSTessellate()
Dfrontend.cpp1273 HANDLE tsCtx = TSInitCtx(tsState.domain, in TessellationStages() local
1278 if (tsCtx == nullptr) in TessellationStages()
1282 tsCtx = TSInitCtx(tsState.domain, in TessellationStages()
1288 SWR_ASSERT(tsCtx); in TessellationStages()
1402 TSTessellate(tsCtx, tessFactors, tsData); in TessellationStages()
1647 TSDestroyCtx(tsCtx); in TessellationStages()