-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various (unsuccessful) attempts to reduce object file size.
- Loading branch information
Showing
15 changed files
with
2,414 additions
and
3,029 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ node_modules | |
extern/build-helper.sh | ||
Documentation/Reference | ||
extern/build-linux | ||
extern/build-android |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright 2020-2023 CesiumGS, Inc. and Contributors | ||
|
||
#include "CesiumMetadataValueType.h" | ||
|
||
FCesiumMetadataValueType::FCesiumMetadataValueType() noexcept | ||
: Type(ECesiumMetadataType::Invalid), | ||
ComponentType(ECesiumMetadataComponentType::None), | ||
bIsArray(false) {} | ||
|
||
FCesiumMetadataValueType::FCesiumMetadataValueType( | ||
ECesiumMetadataType InType, | ||
ECesiumMetadataComponentType InComponentType, | ||
bool IsArray) noexcept | ||
: Type(InType), ComponentType(InComponentType), bIsArray(IsArray) {} | ||
|
||
bool FCesiumMetadataValueType::operator==( | ||
const FCesiumMetadataValueType& ValueType) const noexcept { | ||
return Type == ValueType.Type && ComponentType == ValueType.ComponentType && | ||
bIsArray == ValueType.bIsArray; | ||
} | ||
|
||
bool FCesiumMetadataValueType::operator!=( | ||
const FCesiumMetadataValueType& ValueType) const noexcept { | ||
return Type != ValueType.Type || ComponentType != ValueType.ComponentType || | ||
bIsArray != ValueType.bIsArray; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright 2020-2023 CesiumGS, Inc. and Contributors | ||
|
||
#include "CesiumPropertyArray.h" | ||
|
||
FCesiumPropertyArray::FCesiumPropertyArray() noexcept | ||
: _value(), _elementType() {} | ||
|
||
FCesiumPropertyArray::FCesiumPropertyArray( | ||
const FCesiumPropertyArray& rhs) noexcept = default; | ||
|
||
FCesiumPropertyArray::FCesiumPropertyArray( | ||
FCesiumPropertyArray&& rhs) noexcept = default; | ||
|
||
FCesiumPropertyArray& FCesiumPropertyArray::operator=( | ||
const FCesiumPropertyArray& rhs) noexcept = default; | ||
|
||
FCesiumPropertyArray& | ||
FCesiumPropertyArray::operator=(FCesiumPropertyArray&& rhs) noexcept = default; | ||
|
||
FCesiumPropertyArray::~FCesiumPropertyArray() noexcept = default; |
Oops, something went wrong.