Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_multires.h
| Show First 20 Lines • Show All 191 Lines • ▼ Show 20 Lines | void BKE_multires_subdiv_settings_init(struct SubdivSettings *settings, | ||||
| const struct MultiresModifierData *mmd); | const struct MultiresModifierData *mmd); | ||||
| /* TODO(sergey): Replace this set of boolean flags with bitmask. */ | /* TODO(sergey): Replace this set of boolean flags with bitmask. */ | ||||
| void BKE_multires_subdiv_mesh_settings_init(struct SubdivToMeshSettings *mesh_settings, | void BKE_multires_subdiv_mesh_settings_init(struct SubdivToMeshSettings *mesh_settings, | ||||
| const struct Scene *scene, | const struct Scene *scene, | ||||
| const struct Object *object, | const struct Object *object, | ||||
| const struct MultiresModifierData *mmd, | const struct MultiresModifierData *mmd, | ||||
| const bool use_render_params, | const bool use_render_params, | ||||
| const bool ignore_simplify); | const bool ignore_simplify, | ||||
| const bool ignore_control_edges); | |||||
| /* General helpers. */ | /* General helpers. */ | ||||
| /* For a given partial derivatives of a ptex face get tangent matrix for | /* For a given partial derivatives of a ptex face get tangent matrix for | ||||
| * displacement. | * displacement. | ||||
| * | * | ||||
| * Corner needs to be known to properly "rotate" partial derivatives when the | * Corner needs to be known to properly "rotate" partial derivatives when the | ||||
| * matrix is being constructed for quad. For non-quad the corner is to be set | * matrix is being constructed for quad. For non-quad the corner is to be set | ||||
| Show All 15 Lines | |||||