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:
authorCampbell Barton <campbell@blender.org>2022-08-23 04:05:50 +0300
committerCampbell Barton <campbell@blender.org>2022-08-23 04:05:50 +0300
commitee60aa9d012dfd8304e7a7ba38f04c59b56d2efd (patch)
treee6f47f335a75b7018ed011636bae32906bcd4336 /intern/opensubdiv
parenta65e4e61394338154cb4103a83aab0a745935c55 (diff)
Cleanup: match names between functions & declarations
Diffstat (limited to 'intern/opensubdiv')
-rw-r--r--intern/opensubdiv/internal/evaluator/patch_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/opensubdiv/internal/evaluator/patch_map.h b/intern/opensubdiv/internal/evaluator/patch_map.h
index af804d6ca71..1cb9400245f 100644
--- a/intern/opensubdiv/internal/evaluator/patch_map.h
+++ b/intern/opensubdiv/internal/evaluator/patch_map.h
@@ -126,7 +126,7 @@ class PatchMap {
// Internal methods supporting quadtree construction and queries
void assignRootNode(QuadNode *node, int index);
- QuadNode *assignLeafOrChildNode(QuadNode *node, bool isLeaf, int quad, int index);
+ QuadNode *assignLeafOrChildNode(QuadNode *node, bool isLeaf, int quadrant, int index);
template<class T> static int transformUVToQuadQuadrant(T const &median, T &u, T &v);
template<class T>