{-# language CPP #-} -- | = Name -- -- VK_EXT_legacy_dithering - device extension -- -- == VK_EXT_legacy_dithering -- -- [__Name String__] -- @VK_EXT_legacy_dithering@ -- -- [__Extension Type__] -- Device extension -- -- [__Registered Extension Number__] -- 466 -- -- [__Revision__] -- 1 -- -- [__Extension and Version Dependencies__] -- -- - Requires support for Vulkan 1.0 -- -- - Requires @VK_KHR_get_physical_device_properties2@ to be enabled -- for any device-level functionality -- -- [__Special Use__] -- -- - -- -- [__Contact__] -- -- - Shahbaz Youssefi -- -- -- [__Extension Proposal__] -- -- -- == Other Extension Metadata -- -- [__Last Modified Date__] -- 2022-03-31 -- -- [__Contributors__] -- -- - Shahbaz Youssefi, Google -- -- - Graeme Leese, Broadcom -- -- - Jan-Harald Fredriksen, Arm -- -- == Description -- -- This extension exposes a hardware feature used by some vendors to -- implement OpenGL’s dithering. The purpose of this extension is to -- support layering OpenGL over Vulkan, by allowing the layer to take -- advantage of the same hardware feature and provide equivalent dithering -- to OpenGL applications. -- -- == New Structures -- -- - Extending -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceFeatures2', -- 'Vulkan.Core10.Device.DeviceCreateInfo': -- -- - 'PhysicalDeviceLegacyDitheringFeaturesEXT' -- -- == New Enum Constants -- -- - 'EXT_LEGACY_DITHERING_EXTENSION_NAME' -- -- - 'EXT_LEGACY_DITHERING_SPEC_VERSION' -- -- - Extending 'Vulkan.Core10.Enums.StructureType.StructureType': -- -- - 'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_PHYSICAL_DEVICE_LEGACY_DITHERING_FEATURES_EXT' -- -- - Extending -- 'Vulkan.Core10.Enums.SubpassDescriptionFlagBits.SubpassDescriptionFlagBits': -- -- - 'Vulkan.Core10.Enums.SubpassDescriptionFlagBits.SUBPASS_DESCRIPTION_ENABLE_LEGACY_DITHERING_BIT_EXT' -- -- If -- -- is supported: -- -- - Extending 'Vulkan.Core13.Enums.RenderingFlagBits.RenderingFlagBits': -- -- - 'Vulkan.Core13.Enums.RenderingFlagBits.RENDERING_ENABLE_LEGACY_DITHERING_BIT_EXT' -- -- If -- -- is supported: -- -- - Extending 'Vulkan.Core13.Enums.RenderingFlagBits.RenderingFlagBits': -- -- - 'Vulkan.Core13.Enums.RenderingFlagBits.RENDERING_ENABLE_LEGACY_DITHERING_BIT_EXT' -- -- == Version History -- -- - Revision 1, 2022-03-31 (Shahbaz Youssefi) -- -- - Internal revisions -- -- == Issues -- -- 1) In OpenGL, the dither state can change dynamically. Should this -- extension add a pipeline state for dither? -- -- __RESOLVED__: No. Changing dither state is rarely, if ever, done during -- rendering. Every surveyed Android application either entirely disables -- dither, explicitly enables it, or uses the default state (which is -- enabled). Additionally, on some hardware dither can only be specified in -- a render pass granularity, so a change in dither state would necessarily -- need to cause a render pass break. This extension considers dynamic -- changes in OpenGL dither state a theoretical situation, and expects the -- layer to break the render pass in such a situation without any practical -- downsides. -- -- == See Also -- -- 'PhysicalDeviceLegacyDitheringFeaturesEXT' -- -- == Document Notes -- -- For more information, see the -- -- -- This page is a generated document. Fixes and changes should be made to -- the generator scripts, not directly. module Vulkan.Extensions.VK_EXT_legacy_dithering (PhysicalDeviceLegacyDitheringFeaturesEXT) where import Vulkan.CStruct (FromCStruct) import Vulkan.CStruct (ToCStruct) import Data.Kind (Type) data PhysicalDeviceLegacyDitheringFeaturesEXT instance ToCStruct PhysicalDeviceLegacyDitheringFeaturesEXT instance Show PhysicalDeviceLegacyDitheringFeaturesEXT instance FromCStruct PhysicalDeviceLegacyDitheringFeaturesEXT