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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2021-03-07 19:22:00 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2021-03-07 19:22:00 +0300
commit9c8382e6186b519429e4dee8870265351810bc99 (patch)
treef8a97cdd65b8057b77e917c26b8513e9567007b2 /intern/cycles/render/alembic.h
parent00f218602d52defee624e9853b03431d732649fa (diff)
Cleanup: do not pass class member to class methods
Diffstat (limited to 'intern/cycles/render/alembic.h')
-rw-r--r--intern/cycles/render/alembic.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/intern/cycles/render/alembic.h b/intern/cycles/render/alembic.h
index a00343c5225..587843201ce 100644
--- a/intern/cycles/render/alembic.h
+++ b/intern/cycles/render/alembic.h
@@ -396,22 +396,19 @@ class AlembicProcedural : public Procedural {
/* Read the data for an IPolyMesh at the specified frame_time. Creates corresponding Geometry and
* Object Nodes in the Cycles scene if none exist yet. */
- void read_mesh(Scene *scene,
- AlembicObject *abc_object,
+ void read_mesh(AlembicObject *abc_object,
Alembic::AbcGeom::Abc::chrono_t frame_time,
Progress &progress);
/* Read the data for an ICurves at the specified frame_time. Creates corresponding Geometry and
* Object Nodes in the Cycles scene if none exist yet. */
- void read_curves(Scene *scene,
- AlembicObject *abc_object,
+ void read_curves(AlembicObject *abc_object,
Alembic::AbcGeom::Abc::chrono_t frame_time,
Progress &progress);
/* Read the data for an ISubD at the specified frame_time. Creates corresponding Geometry and
* Object Nodes in the Cycles scene if none exist yet. */
- void read_subd(Scene *scene,
- AlembicObject *abc_object,
+ void read_subd(AlembicObject *abc_object,
Alembic::AbcGeom::Abc::chrono_t frame_time,
Progress &progress);
};