mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-29 15:58:33 +00:00
Merge pull request #2972 from lioncash/align
General: Replace GC_ALIGN macros with alignas
This commit is contained in:
commit
c5685ba53a
19 changed files with 73 additions and 84 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue