aboutsummaryrefslogtreecommitdiffstats
path: root/components/webgpu/identity.rs
diff options
context:
space:
mode:
authorKunal Mohan <kunalmohan99@gmail.com>2020-07-22 17:52:49 +0530
committerKunal Mohan <kunalmohan99@gmail.com>2020-07-24 12:45:23 +0530
commitaff22db33ff237e0fd677671851e3919007f20ef (patch)
treeb3073acf157f99a004c53d33d7da3d839e5accd1 /components/webgpu/identity.rs
parent75abccb16bc19eb375ce73f26a0234e3d2ecbb9b (diff)
downloadservo-aff22db33ff237e0fd677671851e3919007f20ef.tar.gz
servo-aff22db33ff237e0fd677671851e3919007f20ef.zip
Implement GPURenderBundleEncoder and GPURenderBundle
Diffstat (limited to 'components/webgpu/identity.rs')
-rw-r--r--components/webgpu/identity.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/webgpu/identity.rs b/components/webgpu/identity.rs
index 3fe3d817081..8a76868a2df 100644
--- a/components/webgpu/identity.rs
+++ b/components/webgpu/identity.rs
@@ -57,12 +57,12 @@ pub enum WebGPUMsg {
#[derive(Debug)]
pub struct IdentityRecycler {
sender: IpcSender<WebGPUMsg>,
- self_sender: IpcSender<WebGPURequest<'static>>,
+ self_sender: IpcSender<WebGPURequest>,
}
pub struct IdentityRecyclerFactory {
pub sender: IpcSender<WebGPUMsg>,
- pub self_sender: IpcSender<WebGPURequest<'static>>,
+ pub self_sender: IpcSender<WebGPURequest>,
}
macro_rules! impl_identity_handler {