Searched refs:fStoreOp (Results 1 – 18 of 18) sorted by relevance
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkRenderPass.h | 34 VkAttachmentStoreOp fStoreOp; member 38 , fStoreOp(storeOp) {} in LoadStoreOps() 41 return fLoadOp == right.fLoadOp && fStoreOp == right.fStoreOp;
|
D | GrVkRenderPass.cpp | 27 attachment->storeOp = desc.fLoadStoreOps.fStoreOp; in setup_vk_attachment_description() 35 attachment->stencilStoreOp = desc.fLoadStoreOps.fStoreOp; in setup_vk_attachment_description()
|
D | GrVkGpuCommandBuffer.cpp | 348 get_vk_load_store_ops(colorInfo.fLoadOp, colorInfo.fStoreOp, in set() 351 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, in set()
|
/third_party/skia/src/gpu/vk/ |
D | GrVkRenderPass.h | 26 VkAttachmentStoreOp fStoreOp; member 30 , fStoreOp(storeOp) {} in LoadStoreOps() 33 return fLoadOp == right.fLoadOp && fStoreOp == right.fStoreOp;
|
D | GrVkRenderPass.cpp | 30 attachment->storeOp = desc.fLoadStoreOps.fStoreOp; in setup_vk_attachment_description() 38 attachment->stencilStoreOp = desc.fLoadStoreOps.fStoreOp; in setup_vk_attachment_description() 106 resolveOp.fStoreOp == VK_ATTACHMENT_STORE_OP_STORE); in Create() 118 SkASSERT(colorOp.fStoreOp == VK_ATTACHMENT_STORE_OP_DONT_CARE); in Create()
|
D | GrVkOpsRenderPass.cpp | 228 get_vk_load_store_ops(colorInfo.fLoadOp, colorInfo.fStoreOp, &loadOp, &storeOp); in init() 231 get_vk_load_store_ops(resolveInfo.fLoadOp, resolveInfo.fStoreOp, &loadOp, &storeOp); in init() 234 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, &loadOp, &storeOp); in init()
|
D | GrVkGpu.cpp | 348 localColorInfo.fStoreOp = GrStoreOp::kDiscard; in onGetOpsRenderPass()
|
/third_party/flutter/skia/src/gpu/ |
D | GrGpuCommandBuffer.h | 75 GrStoreOp fStoreOp; member 83 GrStoreOp fStoreOp; member
|
/third_party/skia/src/gpu/ |
D | GrOpsRenderPass.h | 37 GrStoreOp fStoreOp; member 45 GrStoreOp fStoreOp; member
|
/third_party/skia/experimental/graphite/src/ |
D | CommandBuffer.cpp | 34 if (colorInfo.fStoreOp == StoreOp::kStore) { in beginRenderPass()
|
D | DrawContext.cpp | 118 std::tie(desc.fColorAttachment.fLoadOp, desc.fColorAttachment.fStoreOp) = fDrawPasses[0]->ops(); in snapRenderPassTask()
|
D | CommandBuffer.h | 29 StoreOp fStoreOp; member
|
/third_party/flutter/skia/src/gpu/mtl/ |
D | GrMtlGpuCommandBuffer.mm | 283 SkASSERT(colorInfo.fStoreOp <= GrStoreOp::kDiscard); 284 SkASSERT(stencilInfo.fStoreOp <= GrStoreOp::kDiscard); 297 mtlStoreAction[static_cast<int>(colorInfo.fStoreOp)]; 308 mtlStoreAction[static_cast<int>(stencilInfo.fStoreOp)];
|
/third_party/skia/src/gpu/mtl/ |
D | GrMtlOpsRenderPass.mm | 257 SkASSERT(colorInfo.fStoreOp <= GrStoreOp::kDiscard); 258 SkASSERT(stencilInfo.fStoreOp <= GrStoreOp::kDiscard); 268 colorAttachment.storeAction = mtlStoreAction[static_cast<int>(colorInfo.fStoreOp)]; 277 mtlStencil.storeAction = mtlStoreAction[static_cast<int>(stencilInfo.fStoreOp)];
|
/third_party/skia/tests/graphite/ |
D | CommandBufferTest.cpp | 65 renderPassDesc.fColorAttachment.fStoreOp = StoreOp::kStore; in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
/third_party/skia/experimental/graphite/src/mtl/ |
D | MtlCommandBuffer.mm | 100 colorAttachment.storeAction = mtlStoreAction[static_cast<int>(colorInfo.fStoreOp)];
|
/third_party/skia/src/gpu/gl/ |
D | GrGLOpsRenderPass.cpp | 71 fColorLoadAndStoreInfo.fStoreOp == GrStoreOp::kStore && in onEnd()
|
D | GrGLGpu.cpp | 1995 GrStoreOp::kDiscard == stencilLoadStore.fStoreOp; in use_tiled_rendering() 2054 if (GrStoreOp::kDiscard == colorLoadStore.fStoreOp) { in endCommandBuffer() 2058 if (GrStoreOp::kDiscard == stencilLoadStore.fStoreOp) { in endCommandBuffer() 2077 GrGLbitfield preserveMask = (GrStoreOp::kStore == colorLoadStore.fStoreOp) in endCommandBuffer() 2080 SkASSERT(GrStoreOp::kStore != stencilLoadStore.fStoreOp); in endCommandBuffer()
|