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:
authorHans Goudey <h.goudey@me.com>2022-01-14 23:04:24 +0300
committerHans Goudey <h.goudey@me.com>2022-01-14 23:04:24 +0300
commitb7a27efd781b909536ad6f6ade6b7a9d5f746eb9 (patch)
tree5aae45dd02cea81c1283aff1fbe5bbf1a025865e /source/blender/blenkernel/BKE_subdiv_eval.h
parentbba95d1901a8d0ed4d2797e87e7a2dc756589b32 (diff)
Cleanup: Remove unused subdiv functions
I noticed these when doing final cleanup on rBcfa53e0fbeed. One use was removed in that commit, the others were unused going further back a few years. Differential Revision: https://developer.blender.org/D13834
Diffstat (limited to 'source/blender/blenkernel/BKE_subdiv_eval.h')
-rw-r--r--source/blender/blenkernel/BKE_subdiv_eval.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/blender/blenkernel/BKE_subdiv_eval.h b/source/blender/blenkernel/BKE_subdiv_eval.h
index eeb80898148..2eb64ae795d 100644
--- a/source/blender/blenkernel/BKE_subdiv_eval.h
+++ b/source/blender/blenkernel/BKE_subdiv_eval.h
@@ -102,40 +102,6 @@ void BKE_subdiv_eval_displacement(struct Subdiv *subdiv,
void BKE_subdiv_eval_final_point(
struct Subdiv *subdiv, int ptex_face_index, float u, float v, float r_P[3]);
-/* Patch queries at given resolution.
- *
- * Will evaluate patch at uniformly distributed (u, v) coordinates on a grid
- * of given resolution, producing resolution^2 evaluation points. The order
- * goes as u in rows, v in columns. */
-
-void BKE_subdiv_eval_limit_patch_resolution_point(struct Subdiv *subdiv,
- int ptex_face_index,
- int resolution,
- void *buffer,
- int offset,
- int stride);
-void BKE_subdiv_eval_limit_patch_resolution_point_and_derivatives(struct Subdiv *subdiv,
- int ptex_face_index,
- int resolution,
- void *point_buffer,
- int point_offset,
- int point_stride,
- void *du_buffer,
- int du_offset,
- int du_stride,
- void *dv_buffer,
- int dv_offset,
- int dv_stride);
-void BKE_subdiv_eval_limit_patch_resolution_point_and_normal(struct Subdiv *subdiv,
- int ptex_face_index,
- int resolution,
- void *point_buffer,
- int point_offset,
- int point_stride,
- void *normal_buffer,
- int normal_offset,
- int normal_stride);
-
#ifdef __cplusplus
}
#endif