General: Replace GC_ALIGN macros with alignas

Standard supported alignment -> out with compiler-specific.
This commit is contained in:
Lioncash
2015-09-05 11:44:21 -04:00
parent c08a83a5aa
commit 8ce04f9a65
19 changed files with 73 additions and 84 deletions

View File

@ -25,9 +25,9 @@ static const int TEXTURE_KILL_THRESHOLD = 60;
static const int TEXTURE_POOL_KILL_THRESHOLD = 3;
static const int FRAMECOUNT_INVALID = 0;
TextureCache *g_texture_cache;
TextureCache* g_texture_cache;
GC_ALIGNED16(u8 *TextureCache::temp) = nullptr;
alignas(16) u8* TextureCache::temp = nullptr;
size_t TextureCache::temp_size;
TextureCache::TexCache TextureCache::textures_by_address;