Home
last modified time | relevance | path

Searched refs:blendOn (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/graphite/mtl/
DMtlGraphicsPipeline.mm242 bool blendOn = !skgpu::BlendShouldDisable(equation, srcCoeff, dstCoeff);
249 mtlColorAttachment.blendingEnabled = blendOn;
251 if (blendOn) {
/external/skia/src/gpu/ganesh/mtl/
DGrMtlPipelineStateBuilder.mm348 bool blendOn = !skgpu::BlendShouldDisable(equation, srcCoeff, dstCoeff);
350 mtlColorAttachment.blendingEnabled = blendOn;
352 writer->writeBool(blendOn);
354 if (blendOn) {
/external/skia/src/gpu/graphite/dawn/
DDawnGraphicsPipeline.cpp416 bool blendOn = !skgpu::BlendShouldDisable(equation, srcCoeff, dstCoeff); in Make() local
419 if (blendOn) { in Make()
431 colorTarget.blend = blendOn ? &blend : nullptr; in Make()