From aff22db33ff237e0fd677671851e3919007f20ef Mon Sep 17 00:00:00 2001 From: Kunal Mohan Date: Wed, 22 Jul 2020 17:52:49 +0530 Subject: Implement GPURenderBundleEncoder and GPURenderBundle --- components/script/script_thread.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'components/script/script_thread.rs') diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index b5ea3f619a6..1b7c137e9a2 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -2057,6 +2057,7 @@ impl ScriptThread { WebGPUMsg::FreeCommandBuffer(id) => self.gpu_id_hub.lock().kill_command_buffer_id(id), WebGPUMsg::FreeSampler(id) => self.gpu_id_hub.lock().kill_sampler_id(id), WebGPUMsg::FreeShaderModule(id) => self.gpu_id_hub.lock().kill_shader_module_id(id), + WebGPUMsg::FreeRenderBundle(id) => self.gpu_id_hub.lock().kill_render_bundle_id(id), WebGPUMsg::FreeRenderPipeline(id) => self.gpu_id_hub.lock().kill_render_pipeline_id(id), WebGPUMsg::FreeTexture(id) => self.gpu_id_hub.lock().kill_texture_id(id), WebGPUMsg::FreeTextureView(id) => self.gpu_id_hub.lock().kill_texture_view_id(id), -- cgit v1.2.3