mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
Merge pull request #2972 from lioncash/align
General: Replace GC_ALIGN macros with alignas
This commit is contained in:
@ -26,9 +26,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;
|
||||
|
Reference in New Issue
Block a user