diff options
Diffstat (limited to 'model.hpp')
-rw-r--r-- | model.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,7 @@ struct Model; struct Mesh { int offset, vbo_offset, count; int parent, mesh_binding, mvp_binding, mat_binding; + int env_cube_binding; int mvp_binding_depth; bool world_dirty; m4f world, local; @@ -99,6 +100,7 @@ struct Model_Instance { Device* dev, Arena* a, Render_Pass& pass, + Texture_Id env_cubemap, Sampler_Id sampler ); }; @@ -118,6 +120,7 @@ struct Model_Scene { Device* dev, Arena* a, Render_Pass& pass, + Texture_Id env_cubemap, Sampler_Id sampler ); }; |