Skip to content

Commit 1af95a2

Browse files
authored
Draco v1.5.3 release.
1 parent cfa0547 commit 1af95a2

File tree

110 files changed

+4118
-1927
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+4118
-1927
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.obj eol=lf

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,18 @@ if(DRACO_TRANSCODER_SUPPORTED)
544544
"${draco_src_root}/material/material_library.h")
545545

546546
list(APPEND draco_mesh_sources
547+
"${draco_src_root}/mesh/mesh_connected_components.cc"
548+
"${draco_src_root}/mesh/mesh_connected_components.h"
547549
"${draco_src_root}/mesh/mesh_splitter.cc"
548550
"${draco_src_root}/mesh/mesh_splitter.h"
549551
"${draco_src_root}/mesh/mesh_utils.cc"
550552
"${draco_src_root}/mesh/mesh_utils.h")
551553

552554
list(APPEND draco_scene_sources
553-
"${draco_src_root}/scene/light.h"
555+
"${draco_src_root}/scene/instance_array.cc"
556+
"${draco_src_root}/scene/instance_array.h"
554557
"${draco_src_root}/scene/light.cc"
558+
"${draco_src_root}/scene/light.h"
555559
"${draco_src_root}/scene/mesh_group.h"
556560
"${draco_src_root}/scene/scene.cc"
557561
"${draco_src_root}/scene/scene.h"

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ delays can result in transient errors that can be difficult to diagnose when
1414
new Draco releases are launched. To avoid the issue pin your sites to a
1515
versioned release.
1616

17+
### Version 1.5.3 release:
18+
* Using the versioned www.gstatic.com WASM and Javascript decoders continues
19+
to be recommended. To use v1.5.3, use this URL:
20+
* https://www.gstatic.com/draco/versioned/decoders/1.5.3/*
21+
* Bug fixes.
22+
1723
### Version 1.5.2 release
1824
* This is the same as v1.5.1 with the following two bug fixes:
1925
* Fixes DRACO_TRANSCODER_SUPPORTED enabled builds.

cmake/draco_build_definitions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ macro(draco_set_build_definitions)
6060
# passed to libtool.
6161
#
6262
# We set DRACO_SOVERSION = [c-a].a.r
63-
set(LT_CURRENT 4)
63+
set(LT_CURRENT 5)
6464
set(LT_REVISION 0)
6565
set(LT_AGE 0)
6666
math(EXPR DRACO_SOVERSION_MAJOR "${LT_CURRENT} - ${LT_AGE}")

cmake/draco_tests.cmake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ list(
4949
"${draco_src_root}/core/draco_test_utils.h"
5050
"${draco_src_root}/core/math_utils_test.cc"
5151
"${draco_src_root}/core/quantization_utils_test.cc"
52+
"${draco_src_root}/core/status.cc"
5253
"${draco_src_root}/core/status_test.cc"
5354
"${draco_src_root}/core/vector_d_test.cc"
5455
"${draco_src_root}/io/file_reader_test_common.h"
@@ -83,6 +84,7 @@ if(DRACO_TRANSCODER_SUPPORTED)
8384
"${draco_src_root}/io/texture_io_test.cc"
8485
"${draco_src_root}/material/material_library_test.cc"
8586
"${draco_src_root}/material/material_test.cc"
87+
"${draco_src_root}/scene/instance_array_test.cc"
8688
"${draco_src_root}/scene/light_test.cc"
8789
"${draco_src_root}/scene/mesh_group_test.cc"
8890
"${draco_src_root}/scene/scene_test.cc"

javascript/draco_decoder.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/draco_decoder.wasm

2.84 KB
Binary file not shown.

javascript/draco_decoder_gltf.js

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/draco_decoder_gltf.wasm

1.93 KB
Binary file not shown.

javascript/draco_encoder.js

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)