Lines Matching refs:sampler_info

1481     VkSamplerCreateInfo sampler_info = SafeSaneSamplerCreateInfo();  in TEST_F()  local
1482 sampler_info.addressModeU = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE; in TEST_F()
1483 sampler_info.addressModeV = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE; in TEST_F()
1484 sampler_info.addressModeW = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE; in TEST_F()
1487 sampler_info.anisotropyEnable = 3; in TEST_F()
1488 vkCreateSampler(m_device->device(), &sampler_info, NULL, &sampler); in TEST_F()
1499 VkSamplerCreateInfo sampler_info = SafeSaneSamplerCreateInfo(); in TEST_F() local
1501 sampler_info.addressModeU = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE; in TEST_F()
1502 sampler_info.addressModeV = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE; in TEST_F()
1503 sampler_info.addressModeW = VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE; in TEST_F()
1505 vkCreateSampler(m_device->device(), &sampler_info, NULL, &sampler); in TEST_F()
1520 VkSamplerCreateInfo sampler_info = SafeSaneSamplerCreateInfo(); in TEST_F() local
1522 sampler_info.anisotropyEnable = VK_TRUE; in TEST_F()
1526 err = vkCreateSampler(m_device->device(), &sampler_info, NULL, &sampler); in TEST_F()
1556 VkSamplerCreateInfo sampler_info = sampler_info_ref; in TEST_F() local
1571 sampler_info.maxAnisotropy = NextAfterLess(1.0F); in TEST_F()
1572 do_test(VALIDATION_ERROR_1260085e, &sampler_info); in TEST_F()
1573 sampler_info.maxAnisotropy = sampler_info_ref.maxAnisotropy; in TEST_F()
1576sampler_info.maxAnisotropy = NextAfterGreater(m_device->phy().properties().limits.maxSamplerAnisot… in TEST_F()
1577 do_test(VALIDATION_ERROR_1260085e, &sampler_info); in TEST_F()
1578 sampler_info.maxAnisotropy = sampler_info_ref.maxAnisotropy; in TEST_F()
1581 sampler_info.unnormalizedCoordinates = VK_TRUE; in TEST_F()
1582 do_test(VALIDATION_ERROR_12600868, &sampler_info); in TEST_F()
1583 sampler_info.unnormalizedCoordinates = sampler_info_ref.unnormalizedCoordinates; in TEST_F()
1587 sampler_info.minFilter = VK_FILTER_CUBIC_IMG; in TEST_F()
1588 do_test(VALIDATION_ERROR_12600872, &sampler_info); in TEST_F()
1589 sampler_info.minFilter = sampler_info_ref.minFilter; in TEST_F()
1591 sampler_info.magFilter = VK_FILTER_CUBIC_IMG; in TEST_F()
1592 do_test(VALIDATION_ERROR_12600872, &sampler_info); in TEST_F()
1593 sampler_info.magFilter = sampler_info_ref.magFilter; in TEST_F()