Enum
VkAntiLagModeAMD
Set the status of the anti-lag feature
Possible values of VkAntiLagDataAMD::mode, specifying the
anti-lag status, are:
typedef enum VkAntiLagModeAMD {
VK_ANTI_LAG_MODE_DRIVER_CONTROL_AMD = 0,
VK_ANTI_LAG_MODE_ON_AMD = 1,
VK_ANTI_LAG_MODE_OFF_AMD = 2,
} VkAntiLagModeAMD;
pub struct AntiLagModeAMD(u32);
impl AntiLagModeAMD {
pub const DRIVER_CONTROL: Self = 0;
pub const ON: Self = 1;
pub const OFF: Self = 2;
}
VK_ANTI_LAG_MODE_DRIVER_CONTROL_AMDspecifies that anti-lag will be enabled or disabled depending on driver settings.VK_ANTI_LAG_MODE_ON_AMDspecifies that anti-lag will be enabled.VK_ANTI_LAG_MODE_OFF_AMDspecifies that anti-lag will be disabled.
Parent
VK_AMD_anti_lagType
Enum