Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -674,8 +674,6 @@ if(EMSCRIPTEN AND ENABLE_JS_GLUE)
require_compiler_flag("-s PRECISE_F32=1" YES)
if(ENABLE_WASM)
require_compiler_flag("-s WASM=1" YES)
else()
require_compiler_flag("-s ELIMINATE_DUPLICATE_FUNCTIONS=1" YES)
endif()
if(IE_COMPATIBLE)
require_compiler_flag("-s LEGACY_VM_SUPPORT=1" YES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface DecoderBuffer {

enum draco_StatusCode {
"draco_Status::OK",
"draco_Status::ERROR",
"draco_Status::DRACO_ERROR",
"draco_Status::IO_ERROR",
"draco_Status::INVALID_PARAMETER",
"draco_Status::UNSUPPORTED_VERSION",
Expand Down
2 changes: 1 addition & 1 deletion src/draco/javascript/emscripten/draco_web_decoder.idl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ interface Metadata {

enum draco_StatusCode {
"draco_Status::OK",
"draco_Status::ERROR",
"draco_Status::DRACO_ERROR",
"draco_Status::IO_ERROR",
"draco_Status::INVALID_PARAMETER",
"draco_Status::UNSUPPORTED_VERSION",
Expand Down