/external/skqp/src/gpu/vk/ |
D | GrVkPipeline.cpp | 224 VkPipelineDepthStencilStateCreateInfo* stencilInfo) { in setup_depth_stencil_state() argument 225 memset(stencilInfo, 0, sizeof(VkPipelineDepthStencilStateCreateInfo)); in setup_depth_stencil_state() 226 stencilInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO; in setup_depth_stencil_state() 227 stencilInfo->pNext = nullptr; in setup_depth_stencil_state() 228 stencilInfo->flags = 0; in setup_depth_stencil_state() 230 stencilInfo->depthTestEnable = VK_FALSE; in setup_depth_stencil_state() 231 stencilInfo->depthWriteEnable = VK_FALSE; in setup_depth_stencil_state() 232 stencilInfo->depthCompareOp = VK_COMPARE_OP_ALWAYS; in setup_depth_stencil_state() 233 stencilInfo->depthBoundsTestEnable = VK_FALSE; in setup_depth_stencil_state() 234 stencilInfo->stencilTestEnable = !stencilSettings.isDisabled(); in setup_depth_stencil_state() [all …]
|
D | GrVkCopyPipeline.cpp | 77 static const VkPipelineDepthStencilStateCreateInfo stencilInfo = { in Create() local 167 pipelineCreateInfo.pDepthStencilState = &stencilInfo; in Create()
|
D | GrVkGpuCommandBuffer.cpp | 270 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo) { in set() argument 289 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, in set()
|
D | GrVkGpu.cpp | 301 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo) { in getCommandBuffer() argument 306 fCachedRTCommandBuffer->set(rt, origin, colorInfo, stencilInfo); in getCommandBuffer()
|
/external/skia/src/gpu/vk/ |
D | GrVkPipeline.cpp | 242 VkPipelineDepthStencilStateCreateInfo* stencilInfo) { in setup_depth_stencil_state() argument 244 memset(stencilInfo, 0, sizeof(VkPipelineDepthStencilStateCreateInfo)); in setup_depth_stencil_state() 245 stencilInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO; in setup_depth_stencil_state() 246 stencilInfo->pNext = nullptr; in setup_depth_stencil_state() 247 stencilInfo->flags = 0; in setup_depth_stencil_state() 249 stencilInfo->depthTestEnable = VK_FALSE; in setup_depth_stencil_state() 250 stencilInfo->depthWriteEnable = VK_FALSE; in setup_depth_stencil_state() 251 stencilInfo->depthCompareOp = VK_COMPARE_OP_ALWAYS; in setup_depth_stencil_state() 252 stencilInfo->depthBoundsTestEnable = VK_FALSE; in setup_depth_stencil_state() 253 stencilInfo->stencilTestEnable = !stencilSettings.isDisabled(); in setup_depth_stencil_state() [all …]
|
D | GrVkOpsRenderPass.cpp | 224 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo) { in init() argument 233 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, &loadOp, &storeOp); in init() 340 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in set() argument 388 return this->init(colorInfo, resolveInfo, stencilInfo); in set()
|
D | GrVkGpu.cpp | 311 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in onGetOpsRenderPass() argument 371 stencilInfo, resolveInfo, selfDepFlags, loadFromResolve, in onGetOpsRenderPass()
|
/external/skqp/src/gpu/gl/ |
D | GrGLGpuCommandBuffer.cpp | 28 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo) { in set() argument 35 fStencilLoadAndStoreInfo = stencilInfo; in set()
|
D | GrGLGpu.cpp | 2428 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo) { in getCommandBuffer() argument 2433 fCachedRTCommandBuffer->set(rt, origin, colorInfo, stencilInfo); in getCommandBuffer()
|
/external/skia/src/gpu/mtl/ |
D | GrMtlOpsRenderPass.mm | 27 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo) 30 this->setupRenderPass(colorInfo, stencilInfo); 199 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo) { 209 SkASSERT(stencilInfo.fLoadOp <= GrLoadOp::kDiscard); 218 SkASSERT(stencilInfo.fStoreOp <= GrStoreOp::kDiscard); 236 mtlStencil.loadAction = mtlLoadAction[static_cast<int>(stencilInfo.fLoadOp)]; 237 mtlStencil.storeAction = mtlStoreAction[static_cast<int>(stencilInfo.fStoreOp)]; 240 if (colorInfo.fLoadOp == GrLoadOp::kClear || stencilInfo.fLoadOp == GrLoadOp::kClear) { 247 if (stencilInfo.fLoadOp == GrLoadOp::kClear) {
|
D | GrMtlOpsRenderPass.h | 26 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo); 62 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo);
|
D | GrMtlGpu.mm | 210 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, 213 return new GrMtlOpsRenderPass(this, renderTarget, origin, colorInfo, stencilInfo);
|
/external/skqp/src/gpu/mtl/ |
D | GrMtlGpuCommandBuffer.mm | 20 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo) 27 , fStencilLoadAndStoreInfo(stencilInfo) 44 switch (stencilInfo.fLoadOp) { 60 switch (stencilInfo.fStoreOp) {
|
D | GrMtlGpuCommandBuffer.h | 48 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo);
|
D | GrMtlGpu.mm | 112 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo& stencilInfo) { 113 return new GrMtlGpuRTCommandBuffer(this, renderTarget, origin, bounds, colorInfo, stencilInfo);
|
/external/skia/src/gpu/dawn/ |
D | GrDawnOpsRenderPass.cpp | 45 const StencilLoadAndStoreInfo& stencilInfo) in GrDawnOpsRenderPass() argument 51 wgpu::LoadOp stencilOp = to_dawn_load_op(stencilInfo.fLoadOp); in GrDawnOpsRenderPass()
|
D | GrDawnGpu.cpp | 163 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in onGetOpsRenderPass() argument 166 fOpsRenderPass.reset(new GrDawnOpsRenderPass(this, rt, origin, colorInfo, stencilInfo)); in onGetOpsRenderPass()
|
/external/skia/src/gpu/gl/ |
D | GrGLOpsRenderPass.cpp | 22 const StencilLoadAndStoreInfo& stencilInfo) { in set() argument 31 fStencilLoadAndStoreInfo = stencilInfo; in set()
|
D | GrGLGpu.cpp | 2187 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in onGetOpsRenderPass() argument 2201 fCachedOpsRenderPass->set(rt, useMultisampleFBO, bounds, origin, colorInfo, stencilInfo); in onGetOpsRenderPass()
|
/external/skia/src/gpu/ |
D | GrGpu.cpp | 639 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in getOpsRenderPass() argument 647 colorInfo, stencilInfo, sampledProxies, renderPassXferBarriers); in getOpsRenderPass()
|
/external/skia/src/gpu/d3d/ |
D | GrD3DOpsRenderPass.cpp | 32 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in set() argument
|
D | GrD3DGpu.cpp | 134 const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, in onGetOpsRenderPass() argument 141 if (!fCachedOpsRenderPass->set(rt, origin, bounds, colorInfo, stencilInfo, sampledProxies)) { in onGetOpsRenderPass()
|