Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/tests/
Dvklayertests_buffer_image_memory_sampler.cpp5827 VkImageCreateInfo tmp_img_ci = {}; in TEST_F() local
5828 tmp_img_ci.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO; in TEST_F()
5829 tmp_img_ci.flags = 0; // assumably any is supported in TEST_F()
5830 tmp_img_ci.imageType = VK_IMAGE_TYPE_2D; // any is supported in TEST_F()
5831 tmp_img_ci.format = VK_FORMAT_R8G8B8A8_UNORM; // has mandatory support for all usages in TEST_F()
5832 tmp_img_ci.extent = {64, 64, 1}; // limit is 256 for 3D, or 4096 in TEST_F()
5833 tmp_img_ci.mipLevels = 1; // any is supported in TEST_F()
5834 tmp_img_ci.arrayLayers = 1; // limit is 256 in TEST_F()
5835 tmp_img_ci.samples = VK_SAMPLE_COUNT_1_BIT; // needs to be 1 if TILING_LINEAR in TEST_F()
5837 tmp_img_ci.tiling = VK_IMAGE_TILING_OPTIMAL; in TEST_F()
[all …]