summaryrefslogtreecommitdiffstats
path: root/drivers/gles3/storage/config.h
diff options
context:
space:
mode:
authorAlexander Hartmann <alex.hart.278@gmail.com>2024-06-04 00:15:35 +0200
committerAlexander Hartmann <alex.hart.278@gmail.com>2024-06-11 23:23:51 +0200
commitaed6b023f59f748b81af62774b57ba0c63c8b5b6 (patch)
treecaeee0a0411f76eb13b10c0689cc904d211b9994 /drivers/gles3/storage/config.h
parent5f1184e93fe1021c86520460dc0a6619bff3c1fb (diff)
downloadredot-engine-aed6b023f59f748b81af62774b57ba0c63c8b5b6.tar.gz
Fix Adreno 3xx compatibility for devices with newer driver versions
Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro> Co-Authored-By: Clay John <claynjohn@gmail.com>
Diffstat (limited to 'drivers/gles3/storage/config.h')
-rw-r--r--drivers/gles3/storage/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gles3/storage/config.h b/drivers/gles3/storage/config.h
index c3ab65f0bc..ee7b1b26ed 100644
--- a/drivers/gles3/storage/config.h
+++ b/drivers/gles3/storage/config.h
@@ -91,7 +91,9 @@ public:
bool rt_msaa_multiview_supported = false;
bool multiview_supported = false;
- bool adreno_3xx_compatibility = false;
+ // Adreno 3XX compatibility
+ bool disable_particles_workaround = false; // set to 'true' to disable 'GPUParticles'
+ bool flip_xy_workaround = false;
#ifdef ANDROID_ENABLED
PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC eglFramebufferTextureMultiviewOVR = nullptr;