Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/subd/subd_split.h
| Show All 16 Lines | |||||
| #ifndef __SUBD_SPLIT_H__ | #ifndef __SUBD_SPLIT_H__ | ||||
| #define __SUBD_SPLIT_H__ | #define __SUBD_SPLIT_H__ | ||||
| /* DiagSplit: Parallel, Crack-free, Adaptive Tessellation for Micropolygon Rendering | /* DiagSplit: Parallel, Crack-free, Adaptive Tessellation for Micropolygon Rendering | ||||
| * Splits up patches and determines edge tessellation factors for dicing. Patch | * Splits up patches and determines edge tessellation factors for dicing. Patch | ||||
| * evaluation at arbitrary points is required for this to work. See the paper | * evaluation at arbitrary points is required for this to work. See the paper | ||||
| * for more details. */ | * for more details. */ | ||||
| #include "subd_dice.h" | #include "subd/subd_dice.h" | ||||
| #include "util_types.h" | #include "util/util_types.h" | ||||
| #include "util_vector.h" | #include "util/util_vector.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| class Mesh; | class Mesh; | ||||
| class Patch; | class Patch; | ||||
| #define DSPLIT_NON_UNIFORM -1 | #define DSPLIT_NON_UNIFORM -1 | ||||
| Show All 24 Lines | |||||