pub struct Adapter { /* private fields */ }
Available on
gles
only.Implementations§
Source§impl Adapter
impl Adapter
Sourcepub unsafe fn new_external(
fun: impl FnMut(&str) -> *const c_void,
) -> Option<ExposedAdapter<Api>>
Available on neither Windows nor webgl
.
pub unsafe fn new_external( fun: impl FnMut(&str) -> *const c_void, ) -> Option<ExposedAdapter<Api>>
webgl
.Creates a new external adapter using the specified loader function.
§Safety
- The underlying OpenGL ES context must be current.
- The underlying OpenGL ES context must be current when interfacing with any objects returned by wgpu-hal from this adapter.
pub fn adapter_context(&self) -> &AdapterContext
Available on neither Windows nor
webgl
.Trait Implementations§
Source§impl Adapter for Adapter
impl Adapter for Adapter
type A = Api
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.impl Send for Adapter
Available on
send_sync
only.impl Sync for Adapter
Available on
send_sync
only.Auto Trait Implementations§
impl Freeze for Adapter
impl !RefUnwindSafe 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