Remove unused code from a bunch of crates

This commit is contained in:
est31 2019-06-02 07:12:44 +02:00
parent 8b6ed3d182
commit e64de8d90a
8 changed files with 6 additions and 74 deletions

View file

@ -147,17 +147,6 @@ impl GLContextWrapper {
}
}
pub fn unbind(&self) {
match *self {
GLContextWrapper::Native(ref ctx) => {
ctx.unbind().unwrap();
},
GLContextWrapper::OSMesa(ref ctx) => {
ctx.unbind().unwrap();
},
}
}
pub fn apply_command(
&self,
cmd: WebGLCommand,