Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dbackend_singlesample.cpp83 if (state.depthHottileEnable && state.depthBoundsState.depthBoundsTestEnable) in BackendSingleSample()
89 const float minz = state.depthBoundsState.depthBoundsTestMinValue; in BackendSingleSample()
90 const float maxz = state.depthBoundsState.depthBoundsTestMaxValue; in BackendSingleSample()
Dbackend.cpp248 if (state.depthHottileEnable && state.depthBoundsState.depthBoundsTestEnable) in BackendNullPS()
254 const float minz = state.depthBoundsState.depthBoundsTestMinValue; in BackendNullPS()
255 const float maxz = state.depthBoundsState.depthBoundsTestMaxValue; in BackendNullPS()
Dbackend_sample.cpp104 if (state.depthHottileEnable && state.depthBoundsState.depthBoundsTestEnable) in BackendSampleRate()
110 const float minz = state.depthBoundsState.depthBoundsTestMinValue; in BackendSampleRate()
111 const float maxz = state.depthBoundsState.depthBoundsTestMaxValue; in BackendSampleRate()
Dapi.cpp468 pState->depthBoundsState.depthBoundsTestEnable = false; in SetupDefaultState()
469 pState->depthBoundsState.depthBoundsTestMinValue = 0.0f; in SetupDefaultState()
470 pState->depthBoundsState.depthBoundsTestMaxValue = 1.0f; in SetupDefaultState()
697 pState->depthBoundsState = *pDBState; in SwrSetDepthBoundsState()
990 !pState->state.depthBoundsState.depthBoundsTestEnable && in SetupPipeline()
994 … pState->state.depthBoundsState.depthBoundsTestEnable)) ? true : false; in SetupPipeline()
Dcontext.h288 SWR_DEPTH_BOUNDS_STATE depthBoundsState; in OSALIGNLINE() local
Dbackend_impl.h591 if (state.depthHottileEnable && state.depthBoundsState.depthBoundsTestEnable)
597 const float minz = state.depthBoundsState.depthBoundsTestMinValue;
598 const float maxz = state.depthBoundsState.depthBoundsTestMaxValue;
/external/mesa3d/src/gallium/drivers/swr/
Dswr_state.cpp1578 SWR_DEPTH_BOUNDS_STATE depthBoundsState = {0}; in swr_update_derived() local
1626 depthBoundsState.depthBoundsTestEnable = depth->bounds_test; in swr_update_derived()
1627 depthBoundsState.depthBoundsTestMinValue = depth->bounds_min; in swr_update_derived()
1628 depthBoundsState.depthBoundsTestMaxValue = depth->bounds_max; in swr_update_derived()
1629 ctx->api.pfnSwrSetDepthBoundsState(ctx->swrContext, &depthBoundsState); in swr_update_derived()