Differential D9642 Diff 31337 extern/draco/draco/src/draco/compression/point_cloud/algorithms/quantize_points_3.h
Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/compression/point_cloud/algorithms/quantize_points_3.h
- This file was moved from extern/draco/dracoenc/src/draco/compression/point_cloud/algorithms/quantize_points_3.h.
| Show All 10 Lines | |||||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| // See the License for the specific language governing permissions and | // See the License for the specific language governing permissions and | ||||
| // limitations under the License. | // limitations under the License. | ||||
| // | // | ||||
| #ifndef DRACO_COMPRESSION_POINT_CLOUD_ALGORITHMS_QUANTIZE_POINTS_3_H_ | #ifndef DRACO_COMPRESSION_POINT_CLOUD_ALGORITHMS_QUANTIZE_POINTS_3_H_ | ||||
| #define DRACO_COMPRESSION_POINT_CLOUD_ALGORITHMS_QUANTIZE_POINTS_3_H_ | #define DRACO_COMPRESSION_POINT_CLOUD_ALGORITHMS_QUANTIZE_POINTS_3_H_ | ||||
| #include <inttypes.h> | #include <inttypes.h> | ||||
| #include "draco/compression/point_cloud/algorithms/point_cloud_types.h" | #include "draco/compression/point_cloud/algorithms/point_cloud_types.h" | ||||
| #include "draco/core/quantization_utils.h" | #include "draco/core/quantization_utils.h" | ||||
| namespace draco { | namespace draco { | ||||
| // TODO(hemmer): Make this a stable bounding box. | // TODO(hemmer): Make this a stable bounding box. | ||||
| struct QuantizationInfo { | struct QuantizationInfo { | ||||
| uint32_t quantization_bits; | uint32_t quantization_bits; | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||