diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-06-07 18:18:55 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-06-07 18:20:04 -0300 |
commit | 5bf810b5db953d3f58acdd2d05d5410897f41d63 (patch) | |
tree | 15497d5b43527c997abb5c50bcba2675704431dc /scene/resources/mesh_data_tool.h | |
parent | 5f5d629c8ad654fddbf17850c6fad2999d10daf7 (diff) | |
download | redot-engine-5bf810b5db953d3f58acdd2d05d5410897f41d63.tar.gz |
-Added proper access to depth texture from shader
-Split Mesh into Mesh (abstrat class) and ArrayMesh, to allow to proper mesh primitives, as well as streamable meshes in the future.
Diffstat (limited to 'scene/resources/mesh_data_tool.h')
-rw-r--r-- | scene/resources/mesh_data_tool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/mesh_data_tool.h b/scene/resources/mesh_data_tool.h index f6797d3e5e..ad771edbd1 100644 --- a/scene/resources/mesh_data_tool.h +++ b/scene/resources/mesh_data_tool.h @@ -78,8 +78,8 @@ protected: public: void clear(); - Error create_from_surface(const Ref<Mesh> &p_mesh, int p_surface); - Error commit_to_surface(const Ref<Mesh> &p_mesh); + Error create_from_surface(const Ref<ArrayMesh> &p_mesh, int p_surface); + Error commit_to_surface(const Ref<ArrayMesh> &p_mesh); int get_format() const; |