diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2022-05-04 15:25:14 -0700 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-05-04 15:32:34 -0700 |
commit | fa26abf9017e3bf279904e21065d085baec21819 (patch) | |
tree | ca2786a56ada41eade9bfd2b431c7e9b7310a527 /indra | |
parent | 5ac6f139655815b81a3a4ffce71f0650da771f6f (diff) |
Fix mac build for SL-17283 reflections work
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llrender/llcubemap.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llrender/llcubemap.cpp b/indra/llrender/llcubemap.cpp index 17a487b860..6d872d0763 100644 --- a/indra/llrender/llcubemap.cpp +++ b/indra/llrender/llcubemap.cpp @@ -40,8 +40,9 @@ #include "llglheaders.h" -const F32 epsilon = 1e-7f; -const U16 RESOLUTION = 64; +namespace { + const U16 RESOLUTION = 64; +} bool LLCubeMap::sUseCubeMaps = true; |