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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-28 03:13:32 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-28 05:11:42 +0400
commit731ffd3cd4c1d578fb02d39dc512bace850c2e8b (patch)
tree63cced11229d028a2d8a7e5b6c9600e4e0fa6351 /intern/cycles/subd/CMakeLists.txt
parentaf7a2a3b6a08bdbe99d295e593e770af165eb0e6 (diff)
Cycles: remove approximate subdivision surface with gregory patches code.
It was never fully implemented and will be replaced by OpenSubdiv. Only linear subdivision remains now. Also includes some refactoring in the split/dice code, adding a SubdParams struct to pass around parameters more easily.
Diffstat (limited to 'intern/cycles/subd/CMakeLists.txt')
-rw-r--r--intern/cycles/subd/CMakeLists.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/intern/cycles/subd/CMakeLists.txt b/intern/cycles/subd/CMakeLists.txt
index 838776d60bf..2641f6d9c0c 100644
--- a/intern/cycles/subd/CMakeLists.txt
+++ b/intern/cycles/subd/CMakeLists.txt
@@ -12,26 +12,17 @@ set(INC_SYS
)
set(SRC
- subd_build.cpp
subd_dice.cpp
subd_mesh.cpp
subd_patch.cpp
- subd_ring.cpp
subd_split.cpp
- subd_stencil.cpp
)
set(SRC_HEADERS
- subd_build.h
subd_dice.h
- subd_edge.h
- subd_face.h
subd_mesh.h
subd_patch.h
- subd_ring.h
subd_split.h
- subd_stencil.h
- subd_vert.h
)
include_directories(${INC})