swr/rast: Added missing define for Linux/gcc

+ ZeroMemory() macro definition for non win32-compilation in common/os.h

Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
George Kyriazis 2018-01-19 15:46:57 -06:00
parent 70f8eac603
commit 079ae3c48d
1 changed files with 1 additions and 0 deletions

View File

@ -244,6 +244,7 @@ void AlignedFree(void* p)
#define PRAGMA_WARNING_PUSH_DISABLE(...)
#define PRAGMA_WARNING_POP()
#define ZeroMemory(dst, size) memset(dst, 0, size)
#else
#error Unsupported OS/system.