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-10-06 04:28:07 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2009-10-06 04:28:07 +0400
commit11bdf6ea10ee7bc5e2862cdddbf42eddb06c42fa (patch)
tree55b3def9d986ceaee75fe7d978561464f7731205 /source/blender/render/intern/raytrace/svbvh.h
parenta62e37bfbe5a1430b204b39dcc2e1156d2a6f2bc (diff)
Added #ifdef __SSE__ so it can still build when SSE is disabled at compile time
Diffstat (limited to 'source/blender/render/intern/raytrace/svbvh.h')
-rw-r--r--source/blender/render/intern/raytrace/svbvh.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/render/intern/raytrace/svbvh.h b/source/blender/render/intern/raytrace/svbvh.h
index 840ccc24d1a..3c733b6b402 100644
--- a/source/blender/render/intern/raytrace/svbvh.h
+++ b/source/blender/render/intern/raytrace/svbvh.h
@@ -26,6 +26,8 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+#ifdef __SSE__
+
#ifndef RE_RAYTRACE_SVBVH_H
#define RE_RAYTRACE_SVBVH_H
@@ -243,3 +245,5 @@ struct Reorganize_SVBVH
};
#endif
+
+#endif //__SSE__ \ No newline at end of file