Files
test/source/blender/blenlib/intern/bitmap.cc
Brecht Van Lommel e2e1984e60 Refactor: Convert remainder of blenlib to C++
A few headers like BLI_math_constants.h and BLI_utildefines.h keep working
for C code, for remaining makesdna and userdef defaults code in C.

Pull Request: https://projects.blender.org/blender/blender/pulls/134406
2025-02-12 23:01:08 +01:00

69 lines
1.7 KiB
C++

/* SPDX-FileCopyrightText: 2012 by Nicholas Bishop. All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
*
* Utility functions for variable size bit-masks.
*/
#include <climits>
#include <cstring>
#include "BLI_bitmap.h"
#include "BLI_math_bits.h"
void BLI_bitmap_set_all(BLI_bitmap *bitmap, bool set, size_t bits)
{
memset(bitmap, set ? UCHAR_MAX : 0, BLI_BITMAP_SIZE(bits));
}
void BLI_bitmap_flip_all(BLI_bitmap *bitmap, size_t bits)
{
size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
for (size_t i = 0; i < blocks_num; i++) {
bitmap[i] ^= ~(BLI_bitmap)0;
}
}
void BLI_bitmap_copy_all(BLI_bitmap *dst, const BLI_bitmap *src, size_t bits)
{
memcpy(dst, src, BLI_BITMAP_SIZE(bits));
}
void BLI_bitmap_and_all(BLI_bitmap *dst, const BLI_bitmap *src, size_t bits)
{
size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
for (size_t i = 0; i < blocks_num; i++) {
dst[i] &= src[i];
}
}
void BLI_bitmap_or_all(BLI_bitmap *dst, const BLI_bitmap *src, size_t bits)
{
size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
for (size_t i = 0; i < blocks_num; i++) {
dst[i] |= src[i];
}
}
int BLI_bitmap_find_first_unset(const BLI_bitmap *bitmap, const size_t bits)
{
const size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
int result = -1;
/* Skip over completely set blocks. */
int index = 0;
while (index < blocks_num && bitmap[index] == ~0u) {
index++;
}
if (index < blocks_num) {
/* Found a partially used block: find the lowest unused bit. */
const uint m = ~bitmap[index];
BLI_assert(m != 0);
const uint bit_index = bitscan_forward_uint(m);
result = bit_index + (index << _BITMAP_POWER);
}
return result;
}