mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
a3d859fb4f
A bug in Visual C++ 2013 32-bit & 2015 32-bit causes the C++ compiler to incorrectly align the vec3 and vec4 structs to 8-byte instead of 16-byte, resulting in a crash if the target PC supports SSE. Visual Studio 2017 and 64-bit builds are not affected. Related: #9
53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
/*
|
|
* Modern effects for a modern Streamer
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "util-math.h"
|
|
#include "util-memory.h"
|
|
|
|
void* util::vec3a::operator new(size_t count){
|
|
return malloc_aligned(16, count);
|
|
}
|
|
|
|
void* util::vec3a::operator new[](size_t count) {
|
|
return malloc_aligned(16, count);
|
|
}
|
|
|
|
void util::vec3a::operator delete(void* p) {
|
|
free_aligned(p);
|
|
}
|
|
|
|
void util::vec3a::operator delete[](void* p) {
|
|
free_aligned(p);
|
|
}
|
|
|
|
void* util::vec4a::operator new(size_t count) {
|
|
return malloc_aligned(16, count);
|
|
}
|
|
|
|
void* util::vec4a::operator new[](size_t count) {
|
|
return malloc_aligned(16, count);
|
|
}
|
|
|
|
void util::vec4a::operator delete(void* p) {
|
|
free_aligned(p);
|
|
}
|
|
|
|
void util::vec4a::operator delete[](void* p) {
|
|
free_aligned(p);
|
|
}
|