Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Latest commit

 

History

History
9 lines (8 loc) · 543 Bytes

File metadata and controls

9 lines (8 loc) · 543 Bytes

conservative_rasterization

This sample renders a thin rotating stick that is rendered incorrectly without the use of conservative rasterization. Conservative rasterization is enabled by requesting the VK_KHR_get_physical_device_properties2 instance extension and the VK_EXT_conservative_rasterization device extension. The use of conservative rasterization is controlled by creating a VkPipelineRasterizationConservativeStateCreateInfoEXT structure and passing it to the function SetRasterizationExtension on the graphics pipeline.