disabled CAP_SOLV and CAP_RAY in mobile due to the limits of GLES

This commit is contained in:
Zeno Rogue 2021-06-01 18:04:13 +02:00
parent a1d54a819d
commit 695dee5b98
1 changed files with 2 additions and 2 deletions

View File

@ -634,7 +634,7 @@ union SDL_Event;
#endif
#ifndef CAP_SOLV
#define CAP_SOLV (MAXMDIM >= 4 && !ISWEB)
#define CAP_SOLV (MAXMDIM >= 4 && !ISWEB && !ISMOBILE)
#endif
#ifndef CAP_FIELD
@ -642,7 +642,7 @@ union SDL_Event;
#endif
#ifndef CAP_RAY
#define CAP_RAY (MAXMDIM >= 4 && CAP_GL)
#define CAP_RAY (MAXMDIM >= 4 && CAP_GL && !ISMOBILE && !ISWEB)
#endif
#ifndef CAP_MEMORY_RESERVE