Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Susano Pinto <andresusanopinto@gmail.com>2009-08-29 21:24:45 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2009-08-29 21:24:45 +0400
commitea18c6ef0abcdd5841d77175a67e2611dce446b5 (patch)
treeeef7a43d6618e0a7b3a89499776ab41b3fb50e41 /source/blender/render/intern/raytrace/rayobject_hint.h
parentaec7f2f2c47d02b08383a4f30c0dd0067830b8c8 (diff)
Code reorganization
-separated vbvh, svbvh, qbvh in diferent files (before the only way to switch between them was at compile time)
Diffstat (limited to 'source/blender/render/intern/raytrace/rayobject_hint.h')
-rw-r--r--source/blender/render/intern/raytrace/rayobject_hint.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/render/intern/raytrace/rayobject_hint.h b/source/blender/render/intern/raytrace/rayobject_hint.h
index cc8728a28cb..d85465aec66 100644
--- a/source/blender/render/intern/raytrace/rayobject_hint.h
+++ b/source/blender/render/intern/raytrace/rayobject_hint.h
@@ -26,6 +26,9 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+#ifndef RE_RAYTRACE_RAYOBJECT_HINT_H
+#define RE_RAYTRACE_RAYOBJECT_HINT_H
+
#define HINT_RECURSE 1
#define HINT_ACCEPT 0
#define HINT_DISCARD -1
@@ -63,3 +66,5 @@ inline int hint_test_bb(HintFrustum &obj, float *Nmin, float *Nmax)
return HINT_ACCEPT;
}
*/
+
+#endif