mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Use Device limits and features provided by user
Spec update
This commit is contained in:
parent
cd73193efe
commit
3661aa3d8c
16 changed files with 210 additions and 57 deletions
|
@ -61,7 +61,7 @@ pub enum WebGPUResponse {
|
|||
RequestDevice {
|
||||
device_id: WebGPUDevice,
|
||||
queue_id: WebGPUQueue,
|
||||
_descriptor: wgt::DeviceDescriptor,
|
||||
descriptor: wgt::DeviceDescriptor,
|
||||
label: Option<String>,
|
||||
},
|
||||
BufferMapAsync(IpcSharedMemory),
|
||||
|
@ -960,7 +960,7 @@ impl<'a> WGPU<'a> {
|
|||
if let Err(e) = sender.send(Ok(WebGPUResponse::RequestDevice {
|
||||
device_id: device,
|
||||
queue_id: queue,
|
||||
_descriptor: descriptor,
|
||||
descriptor,
|
||||
label,
|
||||
})) {
|
||||
warn!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue