mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-06-04 11:25:44 +08:00
89 lines
3.0 KiB
C++
89 lines
3.0 KiB
C++
// Copyright 2016 The Draco Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
#ifndef DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_
|
|
#define DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_
|
|
|
|
namespace draco {
|
|
|
|
// Currently, we support point cloud and triangular mesh encoding.
|
|
enum EncodedGeometryType {
|
|
INVALID_GEOMETRY_TYPE = -1,
|
|
POINT_CLOUD = 0,
|
|
TRIANGULAR_MESH,
|
|
};
|
|
|
|
// List of encoding methods for point clouds.
|
|
enum PointCloudEncodingMethod {
|
|
POINT_CLOUD_SEQUENTIAL_ENCODING = 0,
|
|
POINT_CLOUD_KD_TREE_ENCODING
|
|
};
|
|
|
|
// List of encoding methods for meshes.
|
|
enum MeshEncoderMethod {
|
|
MESH_SEQUENTIAL_ENCODING = 0,
|
|
MESH_EDGEBREAKER_ENCODING,
|
|
};
|
|
|
|
// List of various attribute encoders supported by our framework. The entries
|
|
// are used as unique identifiers of the encoders and their values should not
|
|
// be changed!
|
|
enum AttributeEncoderType {
|
|
BASIC_ATTRIBUTE_ENCODER = 0,
|
|
MESH_TRAVERSAL_ATTRIBUTE_ENCODER,
|
|
KD_TREE_ATTRIBUTE_ENCODER,
|
|
};
|
|
|
|
// List of various sequential attribute encoder/decoders that can be used in our
|
|
// pipeline. The values represent unique identifiers used by the decoder and
|
|
// they should not be changed.
|
|
enum SequentialAttributeEncoderType {
|
|
SEQUENTIAL_ATTRIBUTE_ENCODER_GENERIC = 0,
|
|
SEQUENTIAL_ATTRIBUTE_ENCODER_INTEGER,
|
|
SEQUENTIAL_ATTRIBUTE_ENCODER_QUANTIZATION,
|
|
SEQUENTIAL_ATTRIBUTE_ENCODER_NORMALS,
|
|
};
|
|
|
|
// List of all prediction methods currently supported by our framework.
|
|
enum PredictionSchemeMethod {
|
|
// Special value indicating that no prediction scheme was used.
|
|
PREDICTION_NONE = -2,
|
|
// Used when no specific prediction scheme is required.
|
|
PREDICTION_UNDEFINED = -1,
|
|
PREDICTION_DIFFERENCE = 0,
|
|
MESH_PREDICTION_PARALLELOGRAM,
|
|
MESH_PREDICTION_MULTI_PARALLELOGRAM,
|
|
MESH_PREDICTION_TEX_COORDS,
|
|
NUM_PREDICTION_SCHEMES
|
|
};
|
|
|
|
// List of all prediction scheme transforms used by our framework.
|
|
enum PredictionSchemeTransformType {
|
|
PREDICTION_TRANSFORM_NONE = -1,
|
|
// Basic delta transform where the prediction is computed as difference the
|
|
// predicted and original value.
|
|
PREDICTION_TRANSFORM_DELTA = 0,
|
|
// An improved delta transform where all computed delta values are wrapped
|
|
// around a fixed interval which lowers the entropy.
|
|
PREDICTION_TRANSFORM_WRAP = 1,
|
|
// Specialized transform for normal coordinates using inverted tiles.
|
|
PREDICTION_TRANSFORM_NORMAL_OCTAHEDRON = 2,
|
|
// Reserved for internal use.
|
|
PREDICTION_TRANSFORM_RESERVED_0 = 3,
|
|
};
|
|
|
|
} // namespace draco
|
|
|
|
#endif // DRACO_COMPRESSION_CONFIG_COMPRESSION_SHARED_H_
|