reflect: rename non_uniforms to texture_semantics
This commit is contained in:
parent
4e242bf25e
commit
964da02c39
|
@ -477,7 +477,7 @@ where
|
||||||
semantics: &ReflectSemantics,
|
semantics: &ReflectSemantics,
|
||||||
meta: &mut ReflectMeta,
|
meta: &mut ReflectMeta,
|
||||||
) -> Result<(), ShaderReflectError> {
|
) -> Result<(), ShaderReflectError> {
|
||||||
let Some(semantic) = semantics.non_uniform_semantics.get_texture_semantic(texture.name) else {
|
let Some(semantic) = semantics.texture_semantics.get_texture_semantic(texture.name) else {
|
||||||
return Err(SemanticErrorBlame::Fragment.error(SemanticsErrorKind::UnknownSemantics(texture.name.to_string())))
|
return Err(SemanticErrorBlame::Fragment.error(SemanticsErrorKind::UnknownSemantics(texture.name.to_string())))
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -873,7 +873,7 @@ mod test {
|
||||||
0,
|
0,
|
||||||
&ReflectSemantics {
|
&ReflectSemantics {
|
||||||
uniform_semantics,
|
uniform_semantics,
|
||||||
non_uniform_semantics: Default::default(),
|
texture_semantics: Default::default(),
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -325,7 +325,7 @@ pub enum UniformSemantic {
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct ReflectSemantics {
|
pub struct ReflectSemantics {
|
||||||
pub uniform_semantics: FxHashMap<String, UniformSemantic>,
|
pub uniform_semantics: FxHashMap<String, UniformSemantic>,
|
||||||
pub non_uniform_semantics: FxHashMap<String, SemanticMap<TextureSemantics>>,
|
pub texture_semantics: FxHashMap<String, SemanticMap<TextureSemantics>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue