We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677e32c commit 78fa75dCopy full SHA for 78fa75d
cuda_rasterizer/auxiliary.h
@@ -8,16 +8,16 @@
8
#define NUM_WARPS (BLOCK_SIZE/32)
9
10
// Spherical harmonics coefficients
11
-__device__ constexpr float SH_C0 = 0.28209479177387814f;
12
-__device__ constexpr float SH_C1 = 0.4886025119029199f;
13
-__device__ constexpr float SH_C2[] = {
+__device__ const float SH_C0 = 0.28209479177387814f;
+__device__ const float SH_C1 = 0.4886025119029199f;
+__device__ const float SH_C2[] = {
14
1.0925484305920792f,
15
-1.0925484305920792f,
16
0.31539156525252005f,
17
18
0.5462742152960396f
19
};
20
-__device__ constexpr float SH_C3[] = {
+__device__ const float SH_C3[] = {
21
-0.5900435899266435f,
22
2.890611442640554f,
23
-0.4570457994644658f,
0 commit comments