| 469 | } |
| 470 | |
| 471 | deUint32 getBit (int ndx) const |
| 472 | { |
| 473 | DE_ASSERT(basisu_astc::inBounds(ndx, 0, 128)); |
| 474 | return (m_words[ndx / WORD_BITS] >> (ndx % WORD_BITS)) & 1; |
| 475 | } |
| 476 | |
| 477 | deUint32 getBits (int low, int high) const |
| 478 | { |
no test coverage detected