pub struct Adapter { /* private fields */ }
Implementations§
Source§impl Adapter
impl Adapter
pub fn raw_physical_device(&self) -> PhysicalDevice
pub fn physical_device_capabilities(&self) -> &PhysicalDeviceCapabilities
pub fn required_device_extensions( &self, features: Features, ) -> Vec<&'static CStr>
Sourcepub fn physical_device_features(
&self,
enabled_extensions: &[&'static CStr],
features: Features,
) -> PhysicalDeviceFeatures
pub fn physical_device_features( &self, enabled_extensions: &[&'static CStr], features: Features, ) -> PhysicalDeviceFeatures
features
must be the same features used to create enabled_extensions
.
Sourcepub unsafe fn device_from_raw(
&self,
raw_device: Device,
handle_is_owned: bool,
enabled_extensions: &[&'static CStr],
features: Features,
family_index: u32,
queue_index: u32,
) -> Result<OpenDevice<Api>, DeviceError>
pub unsafe fn device_from_raw( &self, raw_device: Device, handle_is_owned: bool, enabled_extensions: &[&'static CStr], features: Features, family_index: u32, queue_index: u32, ) -> Result<OpenDevice<Api>, DeviceError>
§Safety
raw_device
must be created from this adapter.raw_device
must be created usingfamily_index
,enabled_extensions
andphysical_device_features()
enabled_extensions
must be a superset ofrequired_device_extensions()
.
Trait Implementations§
Source§impl Adapter<Api> for Adapter
impl Adapter<Api> for Adapter
unsafe fn open( &self, features: Features, _limits: &Limits, ) -> Result<OpenDevice<Api>, DeviceError>
Source§unsafe fn texture_format_capabilities(
&self,
format: TextureFormat,
) -> TextureFormatCapabilities
unsafe fn texture_format_capabilities( &self, format: TextureFormat, ) -> TextureFormatCapabilities
Return the set of supported capabilities for a texture format.
Source§unsafe fn surface_capabilities(
&self,
surface: &Surface,
) -> Option<SurfaceCapabilities>
unsafe fn surface_capabilities( &self, surface: &Surface, ) -> Option<SurfaceCapabilities>
Returns the capabilities of working with a specified surface. Read more
Source§unsafe fn get_presentation_timestamp(&self) -> PresentationTimestamp
unsafe fn get_presentation_timestamp(&self) -> PresentationTimestamp
Creates a
PresentationTimestamp
using the adapter’s WSI.Auto Trait Implementations§
impl Freeze for Adapter
impl !RefUnwindSafe for Adapter
impl Send for Adapter
impl Sync for Adapter
impl Unpin for Adapter
impl !UnwindSafe for Adapter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more