Changeset View
Changeset View
Standalone View
Standalone View
extern/draco/draco/src/draco/core/bit_utils.h
- This file was moved from extern/draco/dracoenc/src/draco/core/bit_utils.h.
| Show All 14 Lines | |||||
| // File containing a basic set of bit manipulation utilities used within the | // File containing a basic set of bit manipulation utilities used within the | ||||
| // Draco library. | // Draco library. | ||||
| #ifndef DRACO_CORE_BIT_UTILS_H_ | #ifndef DRACO_CORE_BIT_UTILS_H_ | ||||
| #define DRACO_CORE_BIT_UTILS_H_ | #define DRACO_CORE_BIT_UTILS_H_ | ||||
| #include <inttypes.h> | #include <inttypes.h> | ||||
| #include <stdint.h> | #include <stdint.h> | ||||
| #include <type_traits> | #include <type_traits> | ||||
| #if defined(_MSC_VER) | #if defined(_MSC_VER) | ||||
| #include <intrin.h> | #include <intrin.h> | ||||
| #endif // defined(_MSC_VER) | #endif // defined(_MSC_VER) | ||||
| namespace draco { | namespace draco { | ||||
| ▲ Show 20 Lines • Show All 93 Lines • Show Last 20 Lines | |||||