Home
last modified time | relevance | path

Searched refs:DOMToTextureCommand (Results 1 – 5 of 5) sorted by relevance

/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/canvas/webgl_mode/
H A Dinprocess.rs9 use canvas_traits::webgl::DOMToTextureCommand;
144 let command = DOMToTextureCommand::Lock(id, gl_sync as usize, self.lock_channel.0.clone()); in lock()
145 self.webgl_channel.send(WebGLMsg::DOMToTextureCommand(command)).unwrap(); in lock()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/canvas_traits/
H A Dwebgl.rs52 DOMToTextureCommand(DOMToTextureCommand), enumerator
150 pub fn send_dom_to_texture(&self, command: DOMToTextureCommand) -> WebGLSendResult { in send_dom_to_texture()
151 self.sender.send(WebGLMsg::DOMToTextureCommand(command)) in send_dom_to_texture()
416 pub enum DOMToTextureCommand { enum
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/
H A Dwebgltexture.rs8 use canvas_traits::webgl::DOMToTextureCommand;
188 let _ = self.renderer.send_dom_to_texture(DOMToTextureCommand::Detach(self.id)); in delete()
H A Dwebglrenderingcontext.rs9 use canvas_traits::webgl::DOMToTextureCommand;
3339 let command = DOMToTextureCommand::Attach(self.webgl_sender.context_id(), in TexImageDOM()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/canvas/
H A Dwebgl_thread.rs128 WebGLMsg::DOMToTextureCommand(command) => { in handle_msg()
338 fn handle_dom_to_texture(&mut self, command: DOMToTextureCommand) { in handle_dom_to_texture() argument
340 DOMToTextureCommand::Attach(context_id, texture_id, document_id, pipeline_id, size) => { in handle_dom_to_texture()
360 DOMToTextureCommand::Lock(pipeline_id, gl_sync, sender) => { in handle_dom_to_texture()
377 DOMToTextureCommand::Detach(texture_id) => { in handle_dom_to_texture()