pub struct ContextWgpuCore(Arc<Global>);
Available on
wgpu_core
only.Tuple Fields§
§0: Arc<Global>
Implementations§
Source§impl ContextWgpuCore
impl ContextWgpuCore
pub unsafe fn from_hal_instance<A: HalApi>(hal_instance: A::Instance) -> Self
Sourcepub unsafe fn instance_as_hal<A: HalApi>(&self) -> Option<&A::Instance>
pub unsafe fn instance_as_hal<A: HalApi>(&self) -> Option<&A::Instance>
§Safety
- The raw instance handle returned must not be manually destroyed.
pub unsafe fn from_core_instance(core_instance: Instance) -> Self
pub fn enumerate_adapters(&self, backends: Backends) -> Vec<AdapterId>
pub unsafe fn create_adapter_from_hal<A: HalApi>( &self, hal_adapter: ExposedAdapter<A>, ) -> AdapterId
pub unsafe fn adapter_as_hal<A: HalApi, F: FnOnce(Option<&A::Adapter>) -> R, R>( &self, adapter: &CoreAdapter, hal_adapter_callback: F, ) -> R
pub unsafe fn buffer_as_hal<A: HalApi, F: FnOnce(Option<&A::Buffer>) -> R, R>( &self, buffer: &CoreBuffer, hal_buffer_callback: F, ) -> R
pub unsafe fn create_device_from_hal<A: HalApi>( &self, adapter: &CoreAdapter, hal_device: OpenDevice<A>, desc: &DeviceDescriptor<'_>, ) -> Result<(CoreDevice, CoreQueue), RequestDeviceError>
pub unsafe fn create_texture_from_hal<A: HalApi>( &self, hal_texture: A::Texture, device: &CoreDevice, desc: &TextureDescriptor<'_>, ) -> CoreTexture
pub unsafe fn create_buffer_from_hal<A: HalApi>( &self, hal_buffer: A::Buffer, device: &CoreDevice, desc: &BufferDescriptor<'_>, ) -> CoreBuffer
pub unsafe fn device_as_hal<A: HalApi, F: FnOnce(Option<&A::Device>) -> R, R>( &self, device: &CoreDevice, hal_device_callback: F, ) -> R
pub unsafe fn surface_as_hal<A: HalApi, F: FnOnce(Option<&A::Surface>) -> R, R>( &self, surface: &CoreSurface, hal_surface_callback: F, ) -> R
pub unsafe fn texture_as_hal<A: HalApi, F: FnOnce(Option<&A::Texture>) -> R, R>( &self, texture: &CoreTexture, hal_texture_callback: F, ) -> R
pub unsafe fn texture_view_as_hal<A: HalApi, F: FnOnce(Option<&A::TextureView>) -> R, R>( &self, texture_view: &CoreTextureView, hal_texture_view_callback: F, ) -> R
Sourcepub unsafe fn command_encoder_as_hal_mut<A: HalApi, F: FnOnce(Option<&mut A::CommandEncoder>) -> R, R>(
&self,
command_encoder: &CoreCommandEncoder,
hal_command_encoder_callback: F,
) -> R
pub unsafe fn command_encoder_as_hal_mut<A: HalApi, F: FnOnce(Option<&mut A::CommandEncoder>) -> R, R>( &self, command_encoder: &CoreCommandEncoder, hal_command_encoder_callback: F, ) -> R
This method will start the wgpu_core level command recording.
pub fn generate_report(&self) -> GlobalReport
fn handle_error_inner( &self, sink_mutex: &Mutex<ErrorSinkRaw>, source: ContextErrorSource, label: Label<'_>, fn_ident: &'static str, )
fn handle_error( &self, sink_mutex: &Mutex<ErrorSinkRaw>, source: impl Error + WasmNotSendSync + 'static, label: Label<'_>, fn_ident: &'static str, )
fn handle_error_nolabel( &self, sink_mutex: &Mutex<ErrorSinkRaw>, source: impl Error + WasmNotSendSync + 'static, fn_ident: &'static str, )
fn handle_error_fatal( &self, cause: impl Error + WasmNotSendSync + 'static, operation: &'static str, ) -> !
fn format_error(&self, err: &(dyn Error + 'static)) -> String
pub unsafe fn queue_as_hal<A: HalApi, F: FnOnce(Option<&A::Queue>) -> R, R>( &self, queue: &CoreQueue, hal_queue_callback: F, ) -> R
Trait Implementations§
Source§impl Clone for ContextWgpuCore
impl Clone for ContextWgpuCore
Source§fn clone(&self) -> ContextWgpuCore
fn clone(&self) -> ContextWgpuCore
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContextWgpuCore
impl Debug for ContextWgpuCore
Source§impl Drop for ContextWgpuCore
impl Drop for ContextWgpuCore
Source§impl From<ContextWgpuCore> for DispatchInstance
impl From<ContextWgpuCore> for DispatchInstance
Source§fn from(value: ContextWgpuCore) -> Self
fn from(value: ContextWgpuCore) -> Self
Converts to this type from the input type.
Source§impl Hash for ContextWgpuCore
impl Hash for ContextWgpuCore
Source§impl InstanceInterface for ContextWgpuCore
impl InstanceInterface for ContextWgpuCore
fn new(desc: &InstanceDescriptor) -> Selfwhere
Self: Sized,
unsafe fn create_surface( &self, target: SurfaceTargetUnsafe, ) -> Result<DispatchSurface, CreateSurfaceError>
fn request_adapter( &self, options: &RequestAdapterOptions<'_, '_>, ) -> Pin<Box<dyn RequestAdapterFuture>>
fn poll_all_devices(&self, force_wait: bool) -> bool
Source§fn wgsl_language_features(&self) -> WgslLanguageFeatures
fn wgsl_language_features(&self) -> WgslLanguageFeatures
Available on crate feature
wgsl
only.Source§impl Ord for ContextWgpuCore
impl Ord for ContextWgpuCore
Source§impl PartialEq for ContextWgpuCore
impl PartialEq for ContextWgpuCore
Source§impl PartialOrd for ContextWgpuCore
impl PartialOrd for ContextWgpuCore
impl Eq for ContextWgpuCore
Auto Trait Implementations§
impl Freeze for ContextWgpuCore
impl !RefUnwindSafe for ContextWgpuCore
impl Send for ContextWgpuCore
impl Sync for ContextWgpuCore
impl Unpin for ContextWgpuCore
impl !UnwindSafe for ContextWgpuCore
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.