Skip to content

Commit

Permalink
Fixed linking errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gboisse committed Jan 22, 2018
1 parent 5ed9faf commit 75141bd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
8 changes: 7 additions & 1 deletion RadeonRays/src/kernels/GLSL/bvh2.comp
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,10 @@ layout(local_size_x = GROUP_SIZE, local_size_y = 1, local_size_z = 1) in;

shared uint lds_stack[GROUP_SIZE * LDS_STACK_SIZE];

// TODO: implement traversal kernels (gboisse)
void intersect_main()
{
}

void occluded_main()
{
}
15 changes: 14 additions & 1 deletion RadeonRays/src/kernels/GLSL/bvh2_fp16.comp
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#version 430

// TODO: AMD_gpu_shader_half_float requires 450 (https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_gpu_shader_half_float.txt)

#if 0

#extension GL_AMD_gpu_shader_half_float : require

// Note Anvil define system assumes first line is alway a #version so don't rearrange
Expand Down Expand Up @@ -94,4 +99,12 @@ layout(local_size_x = GROUP_SIZE, local_size_y = 1, local_size_z = 1) in;

shared uint lds_stack[GROUP_SIZE * LDS_STACK_SIZE];

// TODO: implement traversal kernels (gboisse)
#endif

void intersect_main()
{
}

void occluded_main()
{
}

0 comments on commit 75141bd

Please sign in to comment.