Lines Matching refs:storeOp
35 VkAttachmentLoadOp* loadOp, VkAttachmentStoreOp* storeOp) { in get_vk_load_store_ops() argument
53 *storeOp = VK_ATTACHMENT_STORE_OP_STORE; in get_vk_load_store_ops()
56 *storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in get_vk_load_store_ops()
60 *storeOp = VK_ATTACHMENT_STORE_OP_STORE; in get_vk_load_store_ops()
226 VkAttachmentStoreOp storeOp; in init() local
227 get_vk_load_store_ops(colorInfo.fLoadOp, colorInfo.fStoreOp, &loadOp, &storeOp); in init()
228 GrVkRenderPass::LoadStoreOps vkColorOps(loadOp, storeOp); in init()
230 get_vk_load_store_ops(resolveInfo.fLoadOp, resolveInfo.fStoreOp, &loadOp, &storeOp); in init()
231 GrVkRenderPass::LoadStoreOps vkResolveOps(loadOp, storeOp); in init()
233 get_vk_load_store_ops(stencilInfo.fLoadOp, stencilInfo.fStoreOp, &loadOp, &storeOp); in init()
234 GrVkRenderPass::LoadStoreOps vkStencilOps(loadOp, storeOp); in init()