7 lines
68 B
GLSL
7 lines
68 B
GLSL
struct Ray {
|
|
vec3 ro;
|
|
vec3 rd;
|
|
};
|
|
|
|
#pragma glslify: export(Ray)
|