summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/attribute.h
diff options
context:
space:
mode:
authorGravatar Feng Chen2021-09-03 23:52:20 +0800
committerGravatar Feng Chen2021-09-03 23:52:20 +0800
commita7bbaa489755c9847416c8c96f0eefb9e78a50a0 (patch)
tree341ab621a49becca148157877d6e57e2a31ba770 /src/shader_recompiler/frontend/ir/attribute.h
parentFix create GraphicsPipelines crash (diff)
downloadyuzu-a7bbaa489755c9847416c8c96f0eefb9e78a50a0.tar.gz
yuzu-a7bbaa489755c9847416c8c96f0eefb9e78a50a0.tar.xz
yuzu-a7bbaa489755c9847416c8c96f0eefb9e78a50a0.zip
Rename parameters
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/attribute.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shader_recompiler/frontend/ir/attribute.h b/src/shader_recompiler/frontend/ir/attribute.h
index 6957fb43b..3f07fd7ac 100644
--- a/src/shader_recompiler/frontend/ir/attribute.h
+++ b/src/shader_recompiler/frontend/ir/attribute.h
@@ -222,12 +222,12 @@ enum class Attribute : u64 {
222 FrontFace = 255, 222 FrontFace = 255,
223}; 223};
224 224
225constexpr size_t NUM_TXT_COORD = 10; 225constexpr size_t NUM_FIXEDFNCTEXTURE = 10;
226constexpr size_t NUM_GENERICS = 32; 226constexpr size_t NUM_GENERICS = 32;
227 227
228[[nodiscard]] u32 TxtCoordAttributeIndex(Attribute attribute); 228[[nodiscard]] u32 FixedFncTextureAttributeIndex(Attribute attribute);
229 229
230[[nodiscard]] u32 TxtCoordAttributeElement(Attribute attribute); 230[[nodiscard]] u32 FixedFncTextureAttributeElement(Attribute attribute);
231 231
232[[nodiscard]] bool IsGeneric(Attribute attribute) noexcept; 232[[nodiscard]] bool IsGeneric(Attribute attribute) noexcept;
233 233