• Home
  • Raw
  • Download

Lines Matching refs:imageView

169 					vk::ImageView *imageView = vk::Cast(colorAttachment->imageView);  in execute()  local
170 if(imageView) in execute()
172 imageView->clear(colorAttachment->clearValue, VK_IMAGE_ASPECT_COLOR_BIT, rect, viewMask); in execute()
180 vk::ImageView *imageView = vk::Cast(stencilAttachment.imageView); in execute() local
181 if(imageView) in execute()
183 imageView->clear(stencilAttachment.clearValue, VK_IMAGE_ASPECT_STENCIL_BIT, rect, viewMask); in execute()
190 vk::ImageView *imageView = vk::Cast(depthAttachment.imageView); in execute() local
192 if(imageView) in execute()
194 imageView->clear(depthAttachment.clearValue, VK_IMAGE_ASPECT_DEPTH_BIT, rect, viewMask); in execute()
225 vk::ImageView *imageView = vk::Cast(colorAttachment->imageView); in execute() local
227 imageView->resolve(resolveImageView, viewMask); in execute()
234 vk::ImageView *imageView = vk::Cast(depthAttachment.imageView); in execute() local
236imageView->resolveDepthStencil(resolveImageView, depthAttachment.resolveMode, VK_RESOLVE_MODE_NONE… in execute()
242 vk::ImageView *imageView = vk::Cast(stencilAttachment.imageView); in execute() local
244imageView->resolveDepthStencil(resolveImageView, VK_RESOLVE_MODE_NONE, stencilAttachment.resolveMo… in execute()
1344 vk::ImageView *imageView = vk::Cast(colorAttachment->imageView); in execute() local
1345 if(imageView) in execute()
1347 imageView->clear(attachment.clearValue, VK_IMAGE_ASPECT_COLOR_BIT, rect, viewMask); in execute()
1356 vk::ImageView *imageView = vk::Cast(depthAttachment.imageView); in execute() local
1357 if(imageView) in execute()
1359 imageView->clear(attachment.clearValue, VK_IMAGE_ASPECT_DEPTH_BIT, rect, viewMask); in execute()
1367 vk::ImageView *imageView = vk::Cast(stencilAttachment.imageView); in execute() local
1368 if(imageView) in execute()
1370 imageView->clear(attachment.clearValue, VK_IMAGE_ASPECT_STENCIL_BIT, rect, viewMask); in execute()
1797 attachments->colorBuffer[location] = vk::Cast(colorAttachments[i].imageView); in getAttachments()
1800 attachments->depthBuffer = vk::Cast(depthAttachment.imageView); in getAttachments()
1801 attachments->stencilBuffer = vk::Cast(stencilAttachment.imageView); in getAttachments()