From 9d1d6eb8a1fd6e61c24ec68ee1054704b8305b6b Mon Sep 17 00:00:00 2001 From: Carlos Lopez Date: Sat, 4 Jan 2025 11:48:22 -0500 Subject: [PATCH] fix(shader): add missing semicolon --- src/shaders/math.hlsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shaders/math.hlsl b/src/shaders/math.hlsl index 3c3ece87..e9860407 100644 --- a/src/shaders/math.hlsl +++ b/src/shaders/math.hlsl @@ -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);