summaryrefslogtreecommitdiff
path: root/editor/import
diff options
context:
space:
mode:
authorRafał Mikrut <mikrutrafal54@gmail.com>2019-12-26 17:38:08 +0100
committerRafał Mikrut <mikrutrafal54@gmail.com>2019-12-26 17:38:08 +0100
commit1ac701cc378d002817463d9e4101f8866254fe42 (patch)
treeb69e2fef1a342f9192b4290164e15d71af65ee6a /editor/import
parente21872f4b9798c14b2840f205eff7aa931f02c0d (diff)
Don't use constant reference in Vector push_back, insert and append_array
Diffstat (limited to 'editor/import')
-rw-r--r--editor/import/editor_scene_importer_gltf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/import/editor_scene_importer_gltf.h b/editor/import/editor_scene_importer_gltf.h
index 6021bf10c8..173d3ec00e 100644
--- a/editor/import/editor_scene_importer_gltf.h
+++ b/editor/import/editor_scene_importer_gltf.h
@@ -172,7 +172,10 @@ class EditorSceneImporterGLTF : public EditorSceneImporter {
min = 0;
max = 0;
sparse_count = 0;
+ sparse_indices_buffer_view = 0;
sparse_indices_byte_offset = 0;
+ sparse_indices_component_type = 0;
+ sparse_values_buffer_view = 0;
sparse_values_byte_offset = 0;
}
};