mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
fixes dereferencing on an immutable reference (#31864)
This commit is contained in:
parent
585e0d69cd
commit
f7669b5238
32 changed files with 76 additions and 77 deletions
|
@ -830,7 +830,7 @@ impl WebGLRenderingContext {
|
|||
}
|
||||
|
||||
if let Some(fb) = self.bound_draw_framebuffer.get() {
|
||||
fb.invalidate_texture(&*texture);
|
||||
fb.invalidate_texture(texture);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue