Home
last modified time | relevance | path

Searched refs:clearDepthStencilValue (Results 1 – 7 of 7) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineClearUtil.cpp86 VkClearDepthStencilValue clearDepthStencilValue; in defaultClearDepthStencilValue() local
87 clearDepthStencilValue.depth = defaultClearDepth(); in defaultClearDepthStencilValue()
88 clearDepthStencilValue.stencil = defaultClearStencil(); in defaultClearDepthStencilValue()
90 return clearDepthStencilValue; in defaultClearDepthStencilValue()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanBenchmarks/
DClearImageBenchmarks.cpp87 vk::ClearDepthStencilValue clearDepthStencilValue; in initialize() local
88 clearDepthStencilValue.depth = 1.0f; in initialize()
89 clearDepthStencilValue.stencil = 0xFF; in initialize()
91 …commandBuffer.clearDepthStencilImage(image, vk::ImageLayout::eGeneral, &clearDepthStencilValue, 1,… in initialize()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DFramebufferVk.h196 const VkClearDepthStencilValue &clearDepthStencilValue);
202 const VkClearDepthStencilValue &clearDepthStencilValue);
211 const VkClearDepthStencilValue &clearDepthStencilValue);
DFramebufferVk.cpp444 const VkClearDepthStencilValue &clearDepthStencilValue = in clear() local
448 clearDepthStencilValue); in clear()
456 const VkClearDepthStencilValue &clearDepthStencilValue) in clearImpl() argument
548 clearDepthStencilValue); in clearImpl()
617 clearDepthStencilValue); in clearImpl()
2173 const VkClearDepthStencilValue &clearDepthStencilValue) in mergeClearsWithDeferredClears() argument
2189 dsClearValue.depthStencil = clearDepthStencilValue; in mergeClearsWithDeferredClears()
2213 const VkClearDepthStencilValue &clearDepthStencilValue) in clearWithDraw() argument
2221 params.depthStencilClearValue = clearDepthStencilValue; in clearWithDraw()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DFramebufferVk.h163 const VkClearDepthStencilValue &clearDepthStencilValue);
170 const VkClearDepthStencilValue &clearDepthStencilValue);
DFramebufferVk.cpp239 const VkClearDepthStencilValue &clearDepthStencilValue = in clear() local
243 clearDepthStencilValue); in clear()
251 const VkClearDepthStencilValue &clearDepthStencilValue) in clearImpl() argument
299 VkClearDepthStencilValue modifiedDepthStencilValue = clearDepthStencilValue; in clearImpl()
1240 const VkClearDepthStencilValue &clearDepthStencilValue) in clearWithRenderPassOp() argument
1287 clearDepthStencilValue.depth); in clearWithRenderPassOp()
1293 clearDepthStencilValue.stencil); in clearWithRenderPassOp()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DTextureVk.cpp1223 VkClearDepthStencilValue clearDepthStencilValue[1]; in ClearTexture() local
1224 clearDepthStencilValue[0].depth = fClearColor; in ClearTexture()
1225 clearDepthStencilValue[0].stencil = uClearColor; in ClearTexture()
1228 VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, clearDepthStencilValue, 1, in ClearTexture()