diff options
Diffstat (limited to 'components/canvas/webgl_thread.rs')
-rw-r--r-- | components/canvas/webgl_thread.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/canvas/webgl_thread.rs b/components/canvas/webgl_thread.rs index ec65b7d144f..294afbcf226 100644 --- a/components/canvas/webgl_thread.rs +++ b/components/canvas/webgl_thread.rs @@ -709,8 +709,6 @@ impl WebGLImpl { ctx.gl().enable_vertex_attrib_array(attrib_id), WebGLCommand::Hint(name, val) => ctx.gl().hint(name, val), - WebGLCommand::IsEnabled(cap, ref chan) => - chan.send(ctx.gl().is_enabled(cap) != 0).unwrap(), WebGLCommand::LineWidth(width) => ctx.gl().line_width(width), WebGLCommand::PixelStorei(name, val) => |