Home
last modified time | relevance | path

Searched refs:fragmentOutputInterfaceState (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/swiftshader/src/Device/
H A DPixelProcessor.cpp79 …const vk::FragmentOutputInterfaceState &fragmentOutputInterfaceState = pipelineState.getFragmentOu… in update() local
99 state.alphaToCoverage = fragmentOutputInterfaceState.hasAlphaToCoverage(); in update()
146 …state.colorWriteMask |= fragmentOutputInterfaceState.colorWriteActive(location, attachments) << (4… in update()
147 …state.blendState[location] = fragmentOutputInterfaceState.getBlendState(location, attachments, fra… in update()
153 state.multiSampleCount = static_cast<unsigned int>(fragmentOutputInterfaceState.getSampleCount()); in update()
154 state.multiSampleMask = fragmentOutputInterfaceState.getMultiSampleMask(); in update()
173 state.sampleShadingEnabled = fragmentOutputInterfaceState.hasSampleShadingEnabled(); in update()
174 state.minSampleShading = fragmentOutputInterfaceState.getMinSampleShading(); in update()
H A DSetupProcessor.cpp63 …const vk::FragmentOutputInterfaceState &fragmentOutputInterfaceState = pipelineState.getFragmentOu… in update() local
86 state.multiSampleCount = fragmentOutputInterfaceState.getSampleCount(); in update()
H A DContext.cpp1368 fragmentOutputInterfaceState.initialize(pCreateInfo->pColorBlendState, in GraphicsState()
1411 fragmentOutputInterfaceState = libraryState.fragmentOutputInterfaceState; in GraphicsState()
1427 combinedState.fragmentOutputInterfaceState.applyState(dynamicState); in combineStates()
H A DContext.hpp484 return fragmentOutputInterfaceState; in getFragmentOutputInterfaceState()
493 FragmentOutputInterfaceState fragmentOutputInterfaceState; member
H A DRenderer.cpp212 const vk::FragmentOutputInterfaceState *fragmentOutputInterfaceState = nullptr; in draw() local
218 fragmentOutputInterfaceState = &pipelineState.getFragmentOutputInterfaceState(); in draw()
220 pixelProcessor.setBlendConstant(fragmentOutputInterfaceState->getBlendConstants()); in draw()
252 int ms = hasRasterizerDiscard ? 1 : fragmentOutputInterfaceState->getSampleCount(); in draw()