mirror of https://github.com/PCSX2/pcsx2.git
ipu: Use alignas to ensure 16-byte alignment of indx4 array
This commit is contained in:
parent
aec8e959d9
commit
08cb843180
|
@ -47,8 +47,7 @@ static rgb16_t vqclut[16]; //clut conversion table
|
||||||
static u8 s_thresh[2]; //thresholds for color conversions
|
static u8 s_thresh[2]; //thresholds for color conversions
|
||||||
int coded_block_pattern = 0;
|
int coded_block_pattern = 0;
|
||||||
|
|
||||||
|
alignas(16) static u8 indx4[16*16/2];
|
||||||
u8 indx4[16*16/2];
|
|
||||||
|
|
||||||
uint eecount_on_last_vdec = 0;
|
uint eecount_on_last_vdec = 0;
|
||||||
bool FMVstarted = false;
|
bool FMVstarted = false;
|
||||||
|
|
Loading…
Reference in New Issue