mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-16 08:53:16 -03:00
GLES doesn't support C-style array initialisers, so stuff like:
Type var[2] = {
VALUE_A,
VALUE_B
};
isn't supported in GLES (it was added in
GL_ARB_shading_language_420pack).
The texture conversion shader used this, so would fail to compile on
GLES.