Differential D6342 Diff 20011 extern/draco/dracoenc/src/draco/compression/point_cloud/algorithms/dynamic_integer_points_kd_tree_decoder.h
Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/dracoenc/src/draco/compression/point_cloud/algorithms/dynamic_integer_points_kd_tree_decoder.h
| Context not available. | |||||
| // Decodes a integer point cloud from |buffer|. | // Decodes a integer point cloud from |buffer|. | ||||
| template <class OutputIteratorT> | template <class OutputIteratorT> | ||||
| bool DecodePoints(DecoderBuffer *buffer, OutputIteratorT &oit); | bool DecodePoints(DecoderBuffer *buffer, OutputIteratorT &oit); | ||||
| #ifndef DRACO_OLD_GCC | |||||
| template <class OutputIteratorT> | template <class OutputIteratorT> | ||||
| bool DecodePoints(DecoderBuffer *buffer, OutputIteratorT &&oit); | bool DecodePoints(DecoderBuffer *buffer, OutputIteratorT &&oit); | ||||
| #endif // DRACO_OLD_GCC | |||||
| const uint32_t dimension() const { return dimension_; } | const uint32_t dimension() const { return dimension_; } | ||||
| Context not available. | |||||
| }; | }; | ||||
| // Decodes a point cloud from |buffer|. | // Decodes a point cloud from |buffer|. | ||||
| #ifndef DRACO_OLD_GCC | |||||
| template <int compression_level_t> | template <int compression_level_t> | ||||
| template <class OutputIteratorT> | template <class OutputIteratorT> | ||||
| bool DynamicIntegerPointsKdTreeDecoder<compression_level_t>::DecodePoints( | bool DynamicIntegerPointsKdTreeDecoder<compression_level_t>::DecodePoints( | ||||
| Context not available. | |||||
| OutputIteratorT local = std::forward<OutputIteratorT>(oit); | OutputIteratorT local = std::forward<OutputIteratorT>(oit); | ||||
| return DecodePoints(buffer, local); | return DecodePoints(buffer, local); | ||||
| } | } | ||||
| #endif // DRACO_OLD_GCC | |||||
| template <int compression_level_t> | template <int compression_level_t> | ||||
| template <class OutputIteratorT> | template <class OutputIteratorT> | ||||
| Context not available. | |||||