pub trait ExtSampleLocationsExtension: DeviceV1_0 {
    const METADATA: Extension = EXT_SAMPLE_LOCATIONS_EXTENSION;

    // Provided methods
    unsafe fn cmd_set_sample_locations_ext(
        &self,
        command_buffer: CommandBuffer,
        sample_locations_info: &SampleLocationsInfoEXT
    ) { ... }
    unsafe fn get_physical_device_multisample_properties_ext(
        &self,
        physical_device: PhysicalDevice,
        samples: SampleCountFlags,
        multisample_properties: &mut MultisamplePropertiesEXT
    ) { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = EXT_SAMPLE_LOCATIONS_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§