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-08-17 20:02:27 +0300
committerHans Goudey <h.goudey@me.com>2022-08-17 20:02:45 +0300
commit27f2ff6b5b6568d0fa98d241b142c47414152bf8 (patch)
treeb52bb44db47410a0f99e6d32db1a0ddabef3fe6e /source/blender/draw/engines/eevee_next
parent04a04e9f69a74c72b47865535fc3b7eda2a1afcd (diff)
Cleanup: Remove redundant use of evaluated non-mesh objects
Metaball, curve, text, and surface objects use the geometry component system to add evaluated mesh object instances to the dependency graph "for render engine" iterator. Therefore it is unnecessary to process those object types in these loops-- it would either be redundant work or a no-op.
Diffstat (limited to 'source/blender/draw/engines/eevee_next')
-rw-r--r--source/blender/draw/engines/eevee_next/eevee_instance.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/draw/engines/eevee_next/eevee_instance.cc b/source/blender/draw/engines/eevee_next/eevee_instance.cc
index eb32ebe9555..d28eb55c3b1 100644
--- a/source/blender/draw/engines/eevee_next/eevee_instance.cc
+++ b/source/blender/draw/engines/eevee_next/eevee_instance.cc
@@ -142,12 +142,8 @@ void Instance::object_sync(Object *ob)
lights.sync_light(ob, ob_handle);
break;
case OB_MESH:
- case OB_CURVES_LEGACY:
- case OB_SURF:
- case OB_FONT: {
sync.sync_mesh(ob, ob_handle);
break;
- }
case OB_VOLUME:
break;
case OB_CURVES: