erebus

view liberebus/src/rt.h @ 47:4b91c9a501d8

minor fix of strange code structure in the thread func
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 01 Feb 2016 14:56:15 +0200
parents e2d9bf168a41
children
line source
1 #ifndef RT_H_
2 #define RT_H_
4 #include "geomobj.h"
5 #include "color.h"
6 #include "erebus_impl.h"
8 Color ray_trace(struct erebus *ctx, const Ray &ray, int iter);
9 Color shade(struct erebus *ctx, const RayHit &hit, int iter);
11 #endif // RT_H_