mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Chore: Fix warnings for openxr (#38045)
These warnings have been there for quite a while and annoying. ``` Compiling webxr v0.0.1 (D:\servo\components\webxr) warning: variable does not need to be mutable --> components\webxr\openxr\mod.rs:557:17 | 557 | let mut context = contexts | ----^^^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default warning: field `profile_type` is never read --> components\webxr\openxr\interaction_profiles.rs:50:9 | 49 | pub struct InteractionProfile<'a> { | ------------------ field in this struct 50 | pub profile_type: InteractionProfileType, | ^^^^^^^^^^^^ | = note: `InteractionProfile` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default ``` Testing: No behaviour change. Signed-off-by: Euclid Ye <yezhizhenjiakang@gmail.com>
This commit is contained in:
parent
c2df8a1bf5
commit
54a02d5a34
2 changed files with 2 additions and 1 deletions
|
@ -47,6 +47,7 @@ pub enum InteractionProfileType {
|
||||||
|
|
||||||
#[derive(Clone, Copy, Debug)]
|
#[derive(Clone, Copy, Debug)]
|
||||||
pub struct InteractionProfile<'a> {
|
pub struct InteractionProfile<'a> {
|
||||||
|
#[allow(dead_code)]
|
||||||
pub profile_type: InteractionProfileType,
|
pub profile_type: InteractionProfileType,
|
||||||
/// The interaction profile path
|
/// The interaction profile path
|
||||||
pub path: &'static str,
|
pub path: &'static str,
|
||||||
|
|
|
@ -554,7 +554,7 @@ impl LayerManagerAPI<SurfmanGL> for OpenXrLayerManager {
|
||||||
let gl = contexts.bindings(device, context_id).unwrap();
|
let gl = contexts.bindings(device, context_id).unwrap();
|
||||||
unsafe { gl.delete_texture(depth_stencil_texture) };
|
unsafe { gl.delete_texture(depth_stencil_texture) };
|
||||||
}
|
}
|
||||||
let mut context = contexts
|
let context = contexts
|
||||||
.context(device, context_id)
|
.context(device, context_id)
|
||||||
.expect("missing GL context");
|
.expect("missing GL context");
|
||||||
for surface_texture in mem::replace(&mut layer.surface_textures, vec![]) {
|
for surface_texture in mem::replace(&mut layer.surface_textures, vec![]) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue