Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/compression/decode.h
- This file was moved from extern/draco/dracoenc/src/draco/compression/decode.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_DECODE_H_ | #ifndef DRACO_COMPRESSION_DECODE_H_ | ||||
| #define DRACO_COMPRESSION_DECODE_H_ | #define DRACO_COMPRESSION_DECODE_H_ | ||||
| #include "draco/draco_features.h" | |||||
| #include "draco/compression/config/compression_shared.h" | #include "draco/compression/config/compression_shared.h" | ||||
| #include "draco/compression/config/decoder_options.h" | #include "draco/compression/config/decoder_options.h" | ||||
| #include "draco/core/decoder_buffer.h" | #include "draco/core/decoder_buffer.h" | ||||
| #include "draco/core/status_or.h" | #include "draco/core/status_or.h" | ||||
| #include "draco/draco_features.h" | |||||
| #include "draco/mesh/mesh.h" | #include "draco/mesh/mesh.h" | ||||
| namespace draco { | namespace draco { | ||||
| // Class responsible for decoding of meshes and point clouds that were | // Class responsible for decoding of meshes and point clouds that were | ||||
| // compressed by a Draco encoder. | // compressed by a Draco encoder. | ||||
| class Decoder { | class Decoder { | ||||
| public: | public: | ||||
| ▲ Show 20 Lines • Show All 50 Lines • Show Last 20 Lines | |||||