gdk-graphics
0b051eb9b5c1eaa0658babaa4463dd7a80aa9d2c
Loading...
Searching...
No Matches
include
gdk
graphics_constraints.h
1
// © Joseph Cameron - All Rights Reserved
2
3
#ifndef GDK_GFX_CONSTRAINTS_H
4
#define GDK_GFX_CONSTRAINTS_H
5
6
#include <cmath>
7
8
namespace
gdk {
9
constexpr
bool
is_power_of_two(
const
std::size_t aNumber) {
10
return
aNumber != 0 && (aNumber & (aNumber - 1)) == 0;
11
}
12
}
13
14
#endif
15
Generated by
1.13.2