Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/dracoenc/src/draco/core/status.h
| Context not available. | |||||
| public: | public: | ||||
| enum Code { | enum Code { | ||||
| OK = 0, | OK = 0, | ||||
| ERROR = -1, // Used for general errors. | DRACO_ERROR = -1, // Used for general errors. | ||||
| IO_ERROR = -2, // Error when handling input or output stream. | IO_ERROR = -2, // Error when handling input or output stream. | ||||
| INVALID_PARAMETER = -3, // Invalid parameter passed to a function. | INVALID_PARAMETER = -3, // Invalid parameter passed to a function. | ||||
| UNSUPPORTED_VERSION = -4, // Input not compatible with the current version. | UNSUPPORTED_VERSION = -4, // Input not compatible with the current version. | ||||
| Context not available. | |||||