diff options
author | Samuel Iglesias Gonsálvez <[email protected]> | 2017-05-17 10:02:24 +0200 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-09-20 17:21:06 -0700 |
commit | c71e5c30a5f90a8cb5732f14408cef8421b64607 (patch) | |
tree | 91c0b0f266e321d7db0fa835139042af9ed275d8 /src/intel | |
parent | 29680ff9a8ed5d0f9f42be4b919ef8ec797c0ef1 (diff) |
anv: Advertise point clipping properties
Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 233dd39015b..d576bb55315 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -892,6 +892,14 @@ void anv_GetPhysicalDeviceProperties2KHR( break; } + case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES_KHR: { + VkPhysicalDevicePointClippingPropertiesKHR *properties = + (VkPhysicalDevicePointClippingPropertiesKHR *) ext; + properties->pointClippingBehavior = VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES_KHR; + anv_finishme("Implement pop-free point clipping"); + break; + } + default: anv_debug_ignored_stype(ext->sType); break; |