mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
util-math, util-memory: Formatting
This commit is contained in:
parent
a3d859fb4f
commit
08c088ce5a
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,6 @@ inline size_t GetNearestPowerOfTwoBelow(size_t v) {
|
|||
return 1ull << size_t(floor(log10(double(v)) / log10(2.0)));
|
||||
}
|
||||
|
||||
|
||||
namespace util {
|
||||
__declspec(align(16)) struct vec3a : public vec3 {
|
||||
static void* vec3a::operator new(size_t count);
|
||||
|
|
|
@ -22,4 +22,5 @@
|
|||
namespace util {
|
||||
void* malloc_aligned(size_t align, size_t size);
|
||||
void free_aligned(void* mem);
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue