File tree 3 files changed +14
-3
lines changed
CesiumGltfWriter/generated/src
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ### v0.44.0 - 2025-02-03
4
+
5
+ ##### Fixes :wrench :
6
+
7
+ - Fixed a crash in ` GltfWriter ` that would happen when the ` EXT_structural_metadata ` ` schema ` property was null.
8
+
3
9
### v0.43.0 - 2025-01-02
4
10
5
11
##### Breaking Changes :mega :
Original file line number Diff line number Diff line change @@ -761,8 +761,10 @@ void writeJson(
761
761
const CesiumJsonWriter::ExtensionWriterContext& context) {
762
762
jsonWriter.StartObject ();
763
763
764
- jsonWriter.Key (" schema" );
765
- writeJson (obj.schema , jsonWriter, context);
764
+ if (obj.schema ) {
765
+ jsonWriter.Key (" schema" );
766
+ writeJson (obj.schema , jsonWriter, context);
767
+ }
766
768
767
769
if (obj.schemaUri ) {
768
770
jsonWriter.Key (" schemaUri" );
Original file line number Diff line number Diff line change @@ -621,17 +621,20 @@ function formatWriterPropertyImpl(property) {
621
621
const isVector = type . startsWith ( "std::vector" ) ;
622
622
const isMap = type . startsWith ( "std::unordered_map" ) ;
623
623
const isOptional = type . startsWith ( "std::optional" ) ;
624
+ const isPointer = type . startsWith ( "CesiumUtility::IntrusivePointer" ) ;
624
625
625
626
const hasDefaultValueGuard =
626
627
! isId && ! isRequiredEnum && defaultValue !== undefined ;
627
628
const hasDefaultVectorGuard = hasDefaultValueGuard && isVector ;
628
629
const hasEmptyGuard = isVector || isMap ;
629
630
const hasOptionalGuard = isOptional ;
631
+ const hasPointerGuard = isPointer ;
630
632
const hasNegativeIndexGuard = isId ;
631
633
const hasGuard =
632
634
hasDefaultValueGuard ||
633
635
hasEmptyGuard ||
634
636
hasOptionalGuard ||
637
+ hasPointerGuard ||
635
638
hasNegativeIndexGuard ;
636
639
637
640
if ( hasDefaultVectorGuard ) {
@@ -653,7 +656,7 @@ function formatWriterPropertyImpl(property) {
653
656
result += `if (!obj.${ property . cppSafeName } .empty()) {\n` ;
654
657
} else if ( hasNegativeIndexGuard ) {
655
658
result += `if (obj.${ property . cppSafeName } > -1) {\n` ;
656
- } else if ( hasOptionalGuard ) {
659
+ } else if ( hasOptionalGuard || hasPointerGuard ) {
657
660
result += `if (obj.${ property . cppSafeName } ) {\n` ;
658
661
}
659
662
You can’t perform that action at this time.
0 commit comments