Wayverb
ray.h
1 #pragma once
2 
3 // please only include in .cpp files
4 
5 #include <string>
6 
7 namespace wayverb {
8 namespace core {
9 namespace cl_sources {
10 const std::string ray(R"(
11 
12 #ifndef RAY_HEADER__
13 #define RAY_HEADER__
14 
15 typedef struct {
16  float3 position;
17  float3 direction;
18 } Ray;
19 
20 #endif
21 
22 )");
23 } // namespace cl_sources
24 } // namespace core
25 } // namespace wayverb
Definition: traits.cpp:2
Definition: capsule_base.h:9
Definition: brdf.h:3