Skip to content

Commit

Permalink
fix typo in Attribute (#318)
Browse files Browse the repository at this point in the history
I'm assuming these are supposed to be `2`.
  • Loading branch information
atornity authored May 19, 2024
1 parent b8002e8 commit c1bdd89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/attributes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1116,10 +1116,10 @@ impl Attribute {
/// [`ScalarType::Float`]
pub const F32_3: Attribute = Attribute(AttributeInner::F32_3);

declare_custom_attr_pub!(F32X2_0, "f32x2_0", 4, VEC2F);
declare_custom_attr_pub!(F32X2_1, "f32x2_1", 4, VEC2F);
declare_custom_attr_pub!(F32X2_2, "f32x2_2", 4, VEC2F);
declare_custom_attr_pub!(F32X2_3, "f32x2_3", 4, VEC2F);
declare_custom_attr_pub!(F32X2_0, "f32x2_0", 2, VEC2F);
declare_custom_attr_pub!(F32X2_1, "f32x2_1", 2, VEC2F);
declare_custom_attr_pub!(F32X2_2, "f32x2_2", 2, VEC2F);
declare_custom_attr_pub!(F32X2_3, "f32x2_3", 2, VEC2F);
declare_custom_attr_pub!(F32X3_0, "f32x3_0", 3, VEC3F);
declare_custom_attr_pub!(F32X3_1, "f32x3_1", 3, VEC3F);
declare_custom_attr_pub!(F32X3_2, "f32x3_2", 3, VEC3F);
Expand Down

0 comments on commit c1bdd89

Please sign in to comment.