Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/compression/config/compression_shared.h
- This file was moved from extern/draco/dracoenc/src/draco/compression/config/compression_shared.h.
| Show All 12 Lines | |||||
| // limitations under the License. | // limitations under the License. | ||||
| // | // | ||||
| #ifndef DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_ | #ifndef DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_ | ||||
| #define DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_ | #define DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_ | ||||
| #include <stdint.h> | #include <stdint.h> | ||||
| #include "draco/core/macros.h" | #include "draco/core/macros.h" | ||||
| #include "draco/draco_features.h" | #include "draco/draco_features.h" | ||||
| namespace draco { | namespace draco { | ||||
| // Latest Draco bit-stream version. | // Latest Draco bit-stream version. | ||||
| static constexpr uint8_t kDracoPointCloudBitstreamVersionMajor = 2; | static constexpr uint8_t kDracoPointCloudBitstreamVersionMajor = 2; | ||||
| static constexpr uint8_t kDracoPointCloudBitstreamVersionMinor = 3; | static constexpr uint8_t kDracoPointCloudBitstreamVersionMinor = 3; | ||||
| static constexpr uint8_t kDracoMeshBitstreamVersionMajor = 2; | static constexpr uint8_t kDracoMeshBitstreamVersionMajor = 2; | ||||
| ▲ Show 20 Lines • Show All 124 Lines • Show Last 20 Lines | |||||