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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-05-18 19:47:38 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-05-27 13:07:15 +0300
commit67fe31d7511e762dac21801656c336add63a811a (patch)
treecb8712038996d669ab888da27a480cc19ca53942 /intern/opensubdiv/CMakeLists.txt
parent7c0bea0d656eb4838ae2b5ebfed53cd1dae6cb12 (diff)
OpenSubdiv: Refactor, move topology refiner to own folder
In the future factory will also be moved there.
Diffstat (limited to 'intern/opensubdiv/CMakeLists.txt')
-rw-r--r--intern/opensubdiv/CMakeLists.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/intern/opensubdiv/CMakeLists.txt b/intern/opensubdiv/CMakeLists.txt
index 3226d9e8931..7c73b2ad555 100644
--- a/intern/opensubdiv/CMakeLists.txt
+++ b/intern/opensubdiv/CMakeLists.txt
@@ -50,6 +50,7 @@ if(WITH_OPENSUBDIV)
)
list(APPEND SRC
+ # Device.
internal/device/device_context_cuda.cc
internal/device/device_context_cuda.h
internal/device/device_context_glsl_compute.cc
@@ -61,13 +62,16 @@ if(WITH_OPENSUBDIV)
internal/device/device_context_openmp.cc
internal/device/device_context_openmp.h
+ # Topology.
+ internal/topology/topology_refiner_capi.cc
+ internal/topology/topology_refiner_impl.cc
+ internal/topology/topology_refiner_impl.h
+
internal/opensubdiv.cc
internal/opensubdiv_converter_factory.cc
internal/opensubdiv_converter_internal.cc
internal/opensubdiv_evaluator.cc
internal/opensubdiv_evaluator_internal.cc
- internal/opensubdiv_topology_refiner.cc
- internal/opensubdiv_topology_refiner_internal.cc
internal/opensubdiv_util.cc
internal/opensubdiv_converter_factory.h
@@ -75,7 +79,6 @@ if(WITH_OPENSUBDIV)
internal/opensubdiv_edge_map.h
internal/opensubdiv_evaluator_internal.h
internal/opensubdiv_internal.h
- internal/opensubdiv_topology_refiner_internal.h
internal/opensubdiv_util.h
)