aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gpuadapter.rs
diff options
context:
space:
mode:
authorKunal Mohan <kunalmohan99@gmail.com>2020-07-04 01:46:10 +0530
committerKunal Mohan <kunalmohan99@gmail.com>2020-07-04 13:59:30 +0530
commit8ef7f245419bc7968a970f6e992f8760a6bedc97 (patch)
treea37074d6fcf293c785bd043faf7eb3f5976d6f0e /components/script/dom/gpuadapter.rs
parent7fafd91593af65225219b500b14959a2e9eadd85 (diff)
downloadservo-8ef7f245419bc7968a970f6e992f8760a6bedc97.tar.gz
servo-8ef7f245419bc7968a970f6e992f8760a6bedc97.zip
Update wgpu-core and wgpu-types
Diffstat (limited to 'components/script/dom/gpuadapter.rs')
-rw-r--r--components/script/dom/gpuadapter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/gpuadapter.rs b/components/script/dom/gpuadapter.rs
index e510afce17d..a965295fd73 100644
--- a/components/script/dom/gpuadapter.rs
+++ b/components/script/dom/gpuadapter.rs
@@ -81,7 +81,7 @@ impl GPUAdapterMethods for GPUAdapter {
let promise = Promise::new_in_current_realm(&self.global(), comp);
let sender = response_async(&promise, self);
let desc = wgt::DeviceDescriptor {
- extensions: wgt::Extensions::empty(),
+ features: wgt::Features::empty(),
limits: wgt::Limits {
max_bind_groups: descriptor.limits.maxBindGroups,
..Default::default()