Files
csgo2_tiny_server_plugin_sy…/csgo2/sdk/public/mathlib.h
Huoji's 8f3005e9b2 大改
2023-10-03 04:07:50 +08:00

13 lines
206 B
C

#pragma once
#include "../sdk.h"
FORCEINLINE unsigned int SmallestPowerOfTwoGreaterOrEqual(unsigned int x)
{
x -= 1;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x |= x >> 8;
x |= x >> 16;
return x + 1;
}