| 234 | }; |
| 235 | |
| 236 | inline deUint32 getBit (deUint32 src, int ndx) |
| 237 | { |
| 238 | DE_ASSERT(basisu_astc::inBounds(ndx, 0, 32)); |
| 239 | return (src >> ndx) & 1; |
| 240 | } |
| 241 | |
| 242 | inline deUint32 getBits (deUint32 src, int low, int high) |
| 243 | { |
no test coverage detected