Differential D9642 Diff 31357 extern/draco/draco/src/draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_multi_parallelogram_decoder.h
Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_multi_parallelogram_decoder.h
- This file was moved from extern/draco/dracoenc/src/draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_multi_parallelogram_decoder.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. | ||||
| // | // | ||||
| #ifdef DRACO_BACKWARDS_COMPATIBILITY_SUPPORTED | #ifdef DRACO_BACKWARDS_COMPATIBILITY_SUPPORTED | ||||
| #ifndef DRACO_COMPRESSION_ATTRIBUTES_PREDICTION_SCHEMES_MESH_PREDICTION_SCHEME_MULTI_PARALLELOGRAM_DECODER_H_ | #ifndef DRACO_COMPRESSION_ATTRIBUTES_PREDICTION_SCHEMES_MESH_PREDICTION_SCHEME_MULTI_PARALLELOGRAM_DECODER_H_ | ||||
| #define DRACO_COMPRESSION_ATTRIBUTES_PREDICTION_SCHEMES_MESH_PREDICTION_SCHEME_MULTI_PARALLELOGRAM_DECODER_H_ | #define DRACO_COMPRESSION_ATTRIBUTES_PREDICTION_SCHEMES_MESH_PREDICTION_SCHEME_MULTI_PARALLELOGRAM_DECODER_H_ | ||||
| #include "draco/draco_features.h" | |||||
| #include "draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_decoder.h" | #include "draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_decoder.h" | ||||
| #include "draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_parallelogram_shared.h" | #include "draco/compression/attributes/prediction_schemes/mesh_prediction_scheme_parallelogram_shared.h" | ||||
| #include "draco/draco_features.h" | |||||
| namespace draco { | namespace draco { | ||||
| // Decoder for predictions encoded by multi-parallelogram encoding scheme. | // Decoder for predictions encoded by multi-parallelogram encoding scheme. | ||||
| // See the corresponding encoder for method description. | // See the corresponding encoder for method description. | ||||
| template <typename DataTypeT, class TransformT, class MeshDataT> | template <typename DataTypeT, class TransformT, class MeshDataT> | ||||
| class MeshPredictionSchemeMultiParallelogramDecoder | class MeshPredictionSchemeMultiParallelogramDecoder | ||||
| : public MeshPredictionSchemeDecoder<DataTypeT, TransformT, MeshDataT> { | : public MeshPredictionSchemeDecoder<DataTypeT, TransformT, MeshDataT> { | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||