Differential D9642 Diff 31697 extern/draco/draco/src/draco/compression/attributes/sequential_normal_attribute_decoder.h
Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/compression/attributes/sequential_normal_attribute_decoder.h
- This file was moved from extern/draco/dracoenc/src/draco/compression/attributes/sequential_normal_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_NORMAL_ATTRIBUTE_DECODER_H_ | #ifndef DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_NORMAL_ATTRIBUTE_DECODER_H_ | ||||
| #define DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_NORMAL_ATTRIBUTE_DECODER_H_ | #define DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_NORMAL_ATTRIBUTE_DECODER_H_ | ||||
| #include "draco/draco_features.h" | |||||
| #include "draco/compression/attributes/prediction_schemes/prediction_scheme_decoder_factory.h" | #include "draco/compression/attributes/prediction_schemes/prediction_scheme_decoder_factory.h" | ||||
| #include "draco/compression/attributes/prediction_schemes/prediction_scheme_normal_octahedron_canonicalized_decoding_transform.h" | #include "draco/compression/attributes/prediction_schemes/prediction_scheme_normal_octahedron_canonicalized_decoding_transform.h" | ||||
| #include "draco/compression/attributes/prediction_schemes/prediction_scheme_normal_octahedron_decoding_transform.h" | #include "draco/compression/attributes/prediction_schemes/prediction_scheme_normal_octahedron_decoding_transform.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 attributes encoded with SequentialNormalAttributeEncoder. | // Decoder for attributes encoded with SequentialNormalAttributeEncoder. | ||||
| class SequentialNormalAttributeDecoder | class SequentialNormalAttributeDecoder | ||||
| : public SequentialIntegerAttributeDecoder { | : public SequentialIntegerAttributeDecoder { | ||||
| public: | public: | ||||
| SequentialNormalAttributeDecoder(); | SequentialNormalAttributeDecoder(); | ||||
| ▲ Show 20 Lines • Show All 52 Lines • Show Last 20 Lines | |||||