HomeSort by relevance Sort by last modified time
    Searched refs:blendState (Results 1 - 17 of 17) sorted by null

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
blend_jit.h 82 RENDER_TARGET_BLEND_COMPILE_STATE blendState;
102 if (!blendState.blendEnable)
104 blendState.sourceAlphaBlendFactor = (SWR_BLEND_FACTOR)0;
105 blendState.destAlphaBlendFactor = (SWR_BLEND_FACTOR)0;
106 blendState.sourceBlendFactor = (SWR_BLEND_FACTOR)0;
107 blendState.destBlendFactor = (SWR_BLEND_FACTOR)0;
108 blendState.colorBlendFunc = (SWR_BLEND_OP)0;
109 blendState.alphaBlendFunc = (SWR_BLEND_OP)0;
112 if (!blendState.logicOpEnable)
114 blendState.logicOpFunc = (SWR_LOGIC_OP)0
    [all...]
blend_jit.cpp 599 if (state.blendState.blendEnable)
629 GenerateBlendFactor<true, false>(state.blendState.sourceBlendFactor, constantColor, src, src1, dst, srcFactor);
630 GenerateBlendFactor<false, true>(state.blendState.sourceAlphaBlendFactor, constantColor, src, src1, dst, srcFactor);
632 GenerateBlendFactor<true, false>(state.blendState.destBlendFactor, constantColor, src, src1, dst, dstFactor);
633 GenerateBlendFactor<false, true>(state.blendState.destAlphaBlendFactor, constantColor, src, src1, dst, dstFactor);
635 BlendFunc<true, false>(state.blendState.colorBlendFunc, src, srcFactor, dst, dstFactor, result);
636 BlendFunc<false, true>(state.blendState.alphaBlendFunc, src, srcFactor, dst, dstFactor, result);
640 GenerateBlendFactor<true, true>(state.blendState.sourceBlendFactor, constantColor, src, src1, dst, srcFactor);
641 GenerateBlendFactor<true, true>(state.blendState.destBlendFactor, constantColor, src, src1, dst, dstFactor);
643 BlendFunc<true, true>(state.blendState.colorBlendFunc, src, srcFactor, dst, dstFactor, result)
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_state.cpp 74 SWR_RENDER_TARGET_BLEND_STATE &blendState =
75 state->blendState.renderTarget[target];
108 blendState.writeDisableRed =
110 blendState.writeDisableGreen =
112 blendState.writeDisableBlue =
114 blendState.writeDisableAlpha =
    [all...]
swr_state.h 91 SWR_BLEND_STATE blendState;
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineBlendTests.cpp 784 const VkPipelineColorBlendAttachmentState& blendState = m_blendStates[quadNdx];
789 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor);
790 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor);
791 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp);
792 renderState.fragOps.blendAState.srcFunc = mapVkBlendFactor(blendState.srcAlphaBlendFactor);
793 renderState.fragOps.blendAState.dstFunc = mapVkBlendFactor(blendState.dstAlphaBlendFactor);
794 renderState.fragOps.blendAState.equation = mapVkBlendOp(blendState.alphaBlendOp);
    [all...]
vktPipelineMultisampleTests.cpp 130 const VkPipelineColorBlendAttachmentState& blendState,
316 const VkPipelineColorBlendAttachmentState& blendState,
330 const VkPipelineColorBlendAttachmentState& blendState,
420 const VkPipelineColorBlendAttachmentState& blendState,
448 const VkPipelineColorBlendAttachmentState& blendState,
475 const VkPipelineColorBlendAttachmentState& blendState,
501 const VkPipelineColorBlendAttachmentState& blendState,
526 const VkPipelineColorBlendAttachmentState& blendState,
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
backend_sample.cpp 83 generateInputCoverage<T, T::InputCoverage>(pCoverageMask, psContext.inputMask, state.blendState.sampleMask);
90 CalcCentroid<T, false>(&psContext, samplePos, coeffs, work.coverageMask, state.blendState.sampleMask);
201 OutputMerger8x2(psContext, psContext.pColorBuffer, sample, &state.blendState, state.pfnBlendFunc, vCoverageMask, depthPassMask, state.psState.renderTargetMask, useAlternateOffset);
203 OutputMerger4x2(psContext, psContext.pColorBuffer, sample, &state.blendState, state.pfnBlendFunc, vCoverageMask, depthPassMask, state.psState.renderTargetMask);
backend_singlesample.cpp 99 generateInputCoverage<T, T::InputCoverage>(pCoverageMask, psContext.inputMask, state.blendState.sampleMask);
106 CalcCentroid<T, true>(&psContext, samplePos, coeffs, work.coverageMask, state.blendState.sampleMask);
186 OutputMerger8x2(psContext, psContext.pColorBuffer, 0, &state.blendState, state.pfnBlendFunc, vCoverageMask, depthPassMask, state.psState.renderTargetMask, useAlternateOffset);
188 OutputMerger4x2(psContext, psContext.pColorBuffer, 0, &state.blendState, state.pfnBlendFunc, vCoverageMask, depthPassMask, state.psState.renderTargetMask);
backend_impl.h     [all...]
api.cpp 713 memcpy(&pState->blendState, pBlendState, sizeof(SWR_BLEND_STATE));
    [all...]
backend.cpp 235 uint32_t sampleMask = state.blendState.sampleMask;
context.h 296 SWR_BLEND_STATE blendState;
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationSmokeTests.cpp 637 VkPipelineColorBlendStateCreateInfo blendState;
809 deMemset(&blendState, 0xcd, sizeof(blendState));
810 blendState.sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO;
811 blendState.pNext = DE_NULL;
812 blendState.flags = 0;
813 blendState.logicOpEnable = VK_FALSE;
814 blendState.logicOp = VK_LOGIC_OP_COPY;
815 blendState.attachmentCount = 1;
816 blendState.pAttachments = &blendAttachment
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawBuffersIndexedTests.cpp 159 struct BlendState
161 BlendState (void) {}
163 BlendState (const Maybe<bool>& enableBlend_,
185 void setCommonBlendState (const glw::Functions& gl, const BlendState& blend)
229 void setIndexedBlendState (const glw::Functions& gl, const BlendState& blend, deUint32 index)
278 const BlendState& blendState,
283 const BlendState& getBlendState (void) const { return m_blendState; }
290 BlendState m_blendState;
293 DrawBufferInfo::DrawBufferInfo (bool render, const IVec2& size, const BlendState& blendState, const TextureFormat& format
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassMultisampleTests.cpp     [all...]
vktRenderPassMultisampleResolveTests.cpp 718 const VkPipelineColorBlendStateCreateInfo blendState =
749 &blendState); // const VkPipelineColorBlendStateCreateInfo* colorBlendStateCreateInfo
    [all...]
vktRenderPassTests.cpp     [all...]

Completed in 1246 milliseconds