Esempio n. 1
0
 internal static int CeilToPowerOfTwo(int x)
 {
     return(1 << IntMath.Log2(x));
 }