Skip to content

Commit 591e1d2

Browse files
refactor(naga)!: remove FunctionTracer::overrides
1 parent 6b3e039 commit 591e1d2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

naga/src/compact/functions.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use super::{FunctionMap, ModuleMap};
44
pub struct FunctionTracer<'a> {
55
pub function: &'a crate::Function,
66
pub constants: &'a crate::Arena<crate::Constant>,
7-
pub overrides: &'a crate::Arena<crate::Override>,
87

98
pub types_used: &'a mut HandleSet<crate::Type>,
109
pub constants_used: &'a mut HandleSet<crate::Constant>,

naga/src/compact/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ impl<'module> ModuleTracer<'module> {
267267
FunctionTracer {
268268
function,
269269
constants: &self.module.constants,
270-
overrides: &self.module.overrides,
271270
types_used: &mut self.types_used,
272271
constants_used: &mut self.constants_used,
273272
global_expressions_used: &mut self.global_expressions_used,

0 commit comments

Comments
 (0)