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-02-15 05:04:22 +0300
committerCampbell Barton <campbell@blender.org>2022-02-15 05:04:31 +0300
commit9d01358a68143ab76ac2f5eed09b370c4eb21a59 (patch)
tree399f895bd89f635aa0d92e4bab7c594610a55b14
parente3a18a890d794538f82ccce3d56c595b33f1a4d9 (diff)
Cleanup: unused argument warnings
-rw-r--r--source/blender/draw/intern/draw_cache_impl_subdivision.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_subdivision.cc b/source/blender/draw/intern/draw_cache_impl_subdivision.cc
index 3c1c8ffd4fc..7efd0de7a44 100644
--- a/source/blender/draw/intern/draw_cache_impl_subdivision.cc
+++ b/source/blender/draw/intern/draw_cache_impl_subdivision.cc
@@ -1762,9 +1762,9 @@ static bool draw_subdiv_create_requested_buffers(const Scene *scene,
const float obmat[4][4],
const bool do_final,
const bool do_uvedit,
- const bool use_subsurf_fdots,
+ const bool UNUSED(use_subsurf_fdots),
const ToolSettings *ts,
- const bool use_hide,
+ const bool UNUSED(use_hide),
OpenSubdiv_EvaluatorCache *evaluator_cache)
{
SubsurfModifierData *smd = BKE_object_get_last_subsurf_modifier(ob);