nv/codegen: Delete periodicMask32
Reviewed-by: Karol Herbst <kherbst@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24791>
This commit is contained in:
@@ -553,13 +553,6 @@ public:
|
||||
|
||||
void andNot(const BitSet&);
|
||||
|
||||
// bits = (bits | setMask) & ~clrMask
|
||||
inline void periodicMask32(uint32_t setMask, uint32_t clrMask)
|
||||
{
|
||||
for (unsigned int i = 0; i < (size + 31) / 32; ++i)
|
||||
data[i] = (data[i] | setMask) & ~clrMask;
|
||||
}
|
||||
|
||||
unsigned int popCount() const;
|
||||
|
||||
void print() const;
|
||||
|
||||
Reference in New Issue
Block a user