Searched defs:makeExtent3D (Results 1 - 2 of 2) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkTypeUtil.hpp97 inline VkExtent3D makeExtent3D(const tcu::IVec3& vec) function in namespace:vk
99 return makeExtent3D((deUint32)vec.x(), (deUint32)vec.y(), (deUint32)vec.z());
102 inline VkExtent3D makeExtent3D(const tcu::UVec3& vec) function in namespace:vk
104 return makeExtent3D(vec.x(), vec.y(), vec.z());
/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeTestsUtil.hpp146 inline vk::VkExtent3D makeExtent3D (const tcu::IVec3& vec) function in namespace:vkt::compute
148 return vk::makeExtent3D(vec.x(), vec.y(), vec.z());

Completed in 200 milliseconds