diff options
author | hpnrep6 <hpnrep6@gmail.com> | 2021-08-10 00:54:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 00:54:24 -0400 |
commit | 0eca908e8610d7eb71b8200d9e9df83bae6f3e49 (patch) | |
tree | ae273d3876283db6d0052fa9f2e2fe21fe095863 /scene/resources/mesh.cpp | |
parent | 2df1765fc28052f25a6a12f3f5c5a974a88b9134 (diff) |
Enclose unused components in DISABLE_DEPRECATED
Diffstat (limited to 'scene/resources/mesh.cpp')
-rw-r--r-- | scene/resources/mesh.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/resources/mesh.cpp b/scene/resources/mesh.cpp index 2f92872ad5..ad589a605e 100644 --- a/scene/resources/mesh.cpp +++ b/scene/resources/mesh.cpp @@ -653,6 +653,7 @@ enum OldArrayFormat { }; +#ifndef DISABLE_DEPRECATED static Array _convert_old_array(const Array &p_old) { Array new_array; new_array.resize(Mesh::ARRAY_MAX); @@ -677,6 +678,7 @@ static Mesh::PrimitiveType _old_primitives[7] = { Mesh::PRIMITIVE_TRIANGLE_STRIP, Mesh::PRIMITIVE_TRIANGLE_STRIP }; +#endif // DISABLE_DEPRECATED void _fix_array_compatibility(const Vector<uint8_t> &p_src, uint32_t p_old_format, uint32_t p_new_format, uint32_t p_elements, Vector<uint8_t> &vertex_data, Vector<uint8_t> &attribute_data, Vector<uint8_t> &skin_data) { uint32_t dst_vertex_stride; |