pub struct Device { /* private fields */ }
Available on
gles
only.Implementations§
Source§impl Device
impl Device
Sourcepub fn context(&self) -> &AdapterContext
Available on neither Windows nor webgl
.
pub fn context(&self) -> &AdapterContext
webgl
.Returns the underlying EGL context.
Source§impl Device
impl Device
Sourcepub unsafe fn texture_from_raw(
&self,
name: NonZeroU32,
desc: &TextureDescriptor<'_>,
drop_guard: Option<DropGuard>,
) -> Texture
Available on native
or Emscripten
only.
pub unsafe fn texture_from_raw( &self, name: NonZeroU32, desc: &TextureDescriptor<'_>, drop_guard: Option<DropGuard>, ) -> Texture
native
or Emscripten
only.Sourcepub unsafe fn texture_from_raw_renderbuffer(
&self,
name: NonZeroU32,
desc: &TextureDescriptor<'_>,
drop_guard: Option<DropGuard>,
) -> Texture
Available on native
or Emscripten
only.
pub unsafe fn texture_from_raw_renderbuffer( &self, name: NonZeroU32, desc: &TextureDescriptor<'_>, drop_guard: Option<DropGuard>, ) -> Texture
native
or Emscripten
only.Trait Implementations§
Source§impl Device for Device
impl Device for Device
type A = Api
Source§unsafe fn create_buffer(
&self,
desc: &BufferDescriptor<'_>,
) -> Result<Buffer, DeviceError>
unsafe fn create_buffer( &self, desc: &BufferDescriptor<'_>, ) -> Result<Buffer, DeviceError>
Creates a new buffer. Read more
unsafe fn destroy_buffer(&self, buffer: Buffer)
unsafe fn map_buffer( &self, buffer: &Buffer, range: MemoryRange, ) -> Result<BufferMapping, DeviceError>
unsafe fn unmap_buffer(&self, buffer: &Buffer) -> Result<(), DeviceError>
unsafe fn flush_mapped_ranges<I>(&self, buffer: &Buffer, ranges: I)where
I: Iterator<Item = MemoryRange>,
unsafe fn invalidate_mapped_ranges<I>(&self, _buffer: &Buffer, _ranges: I)
Source§unsafe fn create_texture(
&self,
desc: &TextureDescriptor<'_>,
) -> Result<Texture, DeviceError>
unsafe fn create_texture( &self, desc: &TextureDescriptor<'_>, ) -> Result<Texture, DeviceError>
Creates a new texture. Read more
unsafe fn destroy_texture(&self, texture: Texture)
unsafe fn create_texture_view( &self, texture: &Texture, desc: &TextureViewDescriptor<'_>, ) -> Result<TextureView, DeviceError>
unsafe fn destroy_texture_view(&self, _view: TextureView)
unsafe fn create_sampler( &self, desc: &SamplerDescriptor<'_>, ) -> Result<Sampler, DeviceError>
unsafe fn destroy_sampler(&self, sampler: Sampler)
Source§unsafe fn create_command_encoder(
&self,
_desc: &CommandEncoderDescriptor<'_, Api>,
) -> Result<CommandEncoder, DeviceError>
unsafe fn create_command_encoder( &self, _desc: &CommandEncoderDescriptor<'_, Api>, ) -> Result<CommandEncoder, DeviceError>
Create a fresh
CommandEncoder
. Read moreunsafe fn destroy_command_encoder(&self, _encoder: CommandEncoder)
Source§unsafe fn create_bind_group_layout(
&self,
desc: &BindGroupLayoutDescriptor<'_>,
) -> Result<BindGroupLayout, DeviceError>
unsafe fn create_bind_group_layout( &self, desc: &BindGroupLayoutDescriptor<'_>, ) -> Result<BindGroupLayout, DeviceError>
Creates a bind group layout.
unsafe fn destroy_bind_group_layout(&self, _bg_layout: BindGroupLayout)
unsafe fn create_pipeline_layout( &self, desc: &PipelineLayoutDescriptor<'_, Api>, ) -> Result<PipelineLayout, DeviceError>
unsafe fn destroy_pipeline_layout(&self, _pipeline_layout: PipelineLayout)
unsafe fn create_bind_group( &self, desc: &BindGroupDescriptor<'_, Api>, ) -> Result<BindGroup, DeviceError>
unsafe fn destroy_bind_group(&self, _group: BindGroup)
unsafe fn create_shader_module( &self, desc: &ShaderModuleDescriptor<'_>, shader: ShaderInput<'_>, ) -> Result<ShaderModule, ShaderError>
unsafe fn destroy_shader_module(&self, _module: ShaderModule)
unsafe fn create_render_pipeline( &self, desc: &RenderPipelineDescriptor<'_, Api>, ) -> Result<RenderPipeline, PipelineError>
unsafe fn destroy_render_pipeline(&self, pipeline: RenderPipeline)
unsafe fn create_compute_pipeline( &self, desc: &ComputePipelineDescriptor<'_, Api>, ) -> Result<ComputePipeline, PipelineError>
unsafe fn destroy_compute_pipeline(&self, pipeline: ComputePipeline)
unsafe fn create_query_set( &self, desc: &QuerySetDescriptor<Label<'_>>, ) -> Result<QuerySet, DeviceError>
unsafe fn destroy_query_set(&self, set: QuerySet)
unsafe fn create_fence(&self) -> Result<Fence, DeviceError>
unsafe fn destroy_fence(&self, fence: Fence)
unsafe fn get_fence_value( &self, fence: &Fence, ) -> Result<FenceValue, DeviceError>
Source§unsafe fn wait(
&self,
fence: &Fence,
wait_value: FenceValue,
timeout_ms: u32,
) -> Result<bool, DeviceError>
unsafe fn wait( &self, fence: &Fence, wait_value: FenceValue, timeout_ms: u32, ) -> Result<bool, DeviceError>
unsafe fn start_capture(&self) -> bool
unsafe fn stop_capture(&self)
unsafe fn create_acceleration_structure( &self, _desc: &AccelerationStructureDescriptor<'_>, ) -> Result<(), DeviceError>
unsafe fn get_acceleration_structure_build_sizes<'a>( &self, _desc: &GetAccelerationStructureBuildSizesDescriptor<'a, Api>, ) -> AccelerationStructureBuildSizes
unsafe fn get_acceleration_structure_device_address( &self, _acceleration_structure: &(), ) -> BufferAddress
unsafe fn destroy_acceleration_structure(&self, _acceleration_structure: ())
impl Send for Device
Available on
send_sync
only.impl Sync for Device
Available on
send_sync
only.Auto Trait Implementations§
impl Freeze for Device
impl !RefUnwindSafe for Device
impl Unpin for Device
impl !UnwindSafe for Device
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