Skip to content

Commit

Permalink
feat: fix for windows
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Pollind <[email protected]>
  • Loading branch information
pollend committed Aug 3, 2024
1 parent 17551c1 commit fef8a1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Forge/Math/Internal/TF_Simd32x4x4.inl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static inline Tsimd_f32x4_t tfSimdGetColumn_f32x4x4(struct Tsimd_f32x4x4_s input
return input.mCol[column];
}

static inline struct Tsimd_f32x4x4_s tfSimdReplace_f32x4x4(struct Tsimd_f32x4x4_s input, float value, uint column, uint row) {
static inline struct Tsimd_f32x4x4_s tfSimdReplace_f32x4x4(struct Tsimd_f32x4x4_s input, float value, int column, int row) {
ASSERT(column < 4);
input.mCol[column] = tfSimdReplace_f32_f32x4(input.mCol[column], row, value);
return input;
Expand Down
2 changes: 1 addition & 1 deletion Forge/Math/Internal/TF_SimdFloat32x4x4.inl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static inline Tsimd_f32x4_t tfSimdGetColumn_f32x4x4(struct Tsimd_f32x4x4_s input
return input.mCol[column];
}

static inline struct Tsimd_f32x4x4_s tfSimdReplace_f32x4x4(struct Tsimd_f32x4x4_s input, float value, uint column, uint row) {
static inline struct Tsimd_f32x4x4_s tfSimdReplace_f32x4x4(struct Tsimd_f32x4x4_s input, float value, int column, int row) {
ASSERT(column < 4);
input.mCol[column] = tfSimdReplace_f32_f32x4(row, input.mCol[column], value);
return input;
Expand Down
2 changes: 1 addition & 1 deletion Forge/Math/TF_Simd32x4x4.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static inline Tsimd_f32x4_t tfSimdGetRow_f32x4x4(struct Tsimd_f32x4x4_s input, i
static inline Tsimd_f32x4_t tfSimdGetColumn_f32x4x4(struct Tsimd_f32x4x4_s input, int column);
static inline float tfSimdGet_f32x4x4(struct Tsimd_f32x4x4_s input, int column, int row);

static inline struct Tsimd_f32x4x4_s tfSimdReplace_f32x4x4(struct Tsimd_f32x4x4_s input, float value, uint column, uint row);
static inline struct Tsimd_f32x4x4_s tfSimdReplace_f32x4x4(struct Tsimd_f32x4x4_s input, float value, int column, int row);

static inline Tsimd_f32x4x4_s tfSimdMul_f32x4x4_f32x4x4(struct Tsimd_f32x4x4_s a0, struct Tsimd_f32x4x4_s a1);
static inline Tsimd_f32x4_t tfSimdMul_f32x4x4_f32x4x1(struct Tsimd_f32x4x4_s a0, Tsimd_f32x4_t a1);
Expand Down

0 comments on commit fef8a1a

Please sign in to comment.