Differential D9642 Diff 31697 extern/draco/draco/src/draco/compression/attributes/sequential_quantization_attribute_decoder.h
Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/compression/attributes/sequential_quantization_attribute_decoder.h
- This file was moved from extern/draco/dracoenc/src/draco/compression/attributes/sequential_quantization_attribute_decoder.h.
| Show All 9 Lines | |||||
| // distributed under the License is distributed on an "AS IS" BASIS, | // distributed under the License is distributed on an "AS IS" BASIS, | ||||
| // 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_ATTRIBUTES_SEQUENTIAL_QUANTIZATION_ATTRIBUTE_DECODER_H_ | #ifndef DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_QUANTIZATION_ATTRIBUTE_DECODER_H_ | ||||
| #define DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_QUANTIZATION_ATTRIBUTE_DECODER_H_ | #define DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_QUANTIZATION_ATTRIBUTE_DECODER_H_ | ||||
| #include "draco/draco_features.h" | |||||
| #include "draco/compression/attributes/sequential_integer_attribute_decoder.h" | #include "draco/compression/attributes/sequential_integer_attribute_decoder.h" | ||||
| #include "draco/draco_features.h" | |||||
| namespace draco { | namespace draco { | ||||
| // Decoder for attribute values encoded with the | // Decoder for attribute values encoded with the | ||||
| // SequentialQuantizationAttributeEncoder. | // SequentialQuantizationAttributeEncoder. | ||||
| class SequentialQuantizationAttributeDecoder | class SequentialQuantizationAttributeDecoder | ||||
| : public SequentialIntegerAttributeDecoder { | : public SequentialIntegerAttributeDecoder { | ||||
| public: | public: | ||||
| Show All 29 Lines | |||||