diff options
Diffstat (limited to 'scene.cpp')
-rw-r--r-- | scene.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -5,8 +5,6 @@ void update_scene( Model_Scene& ms, Device* dev, - const Lighting& lighting, - const Camera& cam, World& w ) { for (auto v : w.view<Transform, C_Model>()) { @@ -14,7 +12,7 @@ void update_scene( auto& m = v.get<C_Model>(); m.i->transform = t.mat; } - ms.update(cam, lighting, dev); + ms.update(dev); } std::pair<Entity_Id, int> scene_pick( |