Skip to content

Commit

Permalink
fix(shader): add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
clshortfuse committed Jan 4, 2025
1 parent 3361a58 commit 9d1d6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shaders/math.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ SIGNSQRT_FUNCTION_GENERATOR(float4);

#define CBRT_FUNCTION_GENERATOR(struct) \
struct Cbrt(struct x) { \
return SignPow(x, 1.f / 3.f) \
return SignPow(x, 1.f / 3.f); \
}

CBRT_FUNCTION_GENERATOR(float);
Expand Down

0 comments on commit 9d1d6eb

Please sign in to comment.