• Home
  • Raw
  • Download

Lines Matching refs:imageViewCreateInfo

135     VkImageViewCreateInfo imageViewCreateInfo = {};  in TEST_F()  local
136 imageViewCreateInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO; in TEST_F()
137 imageViewCreateInfo.image = image; in TEST_F()
138 imageViewCreateInfo.viewType = VK_IMAGE_VIEW_TYPE_2D; in TEST_F()
139 imageViewCreateInfo.format = attachmentFormats[0]; in TEST_F()
140 imageViewCreateInfo.subresourceRange.layerCount = 1; in TEST_F()
141 imageViewCreateInfo.subresourceRange.levelCount = 1; in TEST_F()
142 imageViewCreateInfo.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in TEST_F()
144 vkCreateImageView(m_device->device(), &imageViewCreateInfo, NULL, &imageView); in TEST_F()
251 imageViewCreateInfo.format = attachmentFormats[1]; in TEST_F()
252 vkCreateImageView(m_device->device(), &imageViewCreateInfo, nullptr, &imageView2); in TEST_F()
261 imageViewCreateInfo.format = attachmentFormats[0]; in TEST_F()
268 imageViewCreateInfo.image = imageObject2.image(); in TEST_F()
269 vkCreateImageView(m_device->device(), &imageViewCreateInfo, nullptr, &imageView2); in TEST_F()
278 imageViewCreateInfo.image = imageObject.image(); in TEST_F()
283 imageViewCreateInfo.subresourceRange.levelCount = 2; in TEST_F()
284 vkCreateImageView(m_device->device(), &imageViewCreateInfo, nullptr, &imageView2); in TEST_F()
294 imageViewCreateInfo.subresourceRange.levelCount = 1; in TEST_F()
297 imageViewCreateInfo.components.r = VK_COMPONENT_SWIZZLE_A; in TEST_F()
298 vkCreateImageView(m_device->device(), &imageViewCreateInfo, nullptr, &imageView2); in TEST_F()
308 imageViewCreateInfo.components.r = VK_COMPONENT_SWIZZLE_IDENTITY; in TEST_F()