forked from mirrors/gecko-dev
Bug 1797347 - Limit OOP webgl to nightly-only on android. r=gfx-reviewers,lsalzman
It's causing bug 1794237. Rather than disable it altogether, let's just hold it back to nightly. Hopefully that way we'll eventually get a bug report with a URL to help us actually fix the crash. Differential Revision: https://phabricator.services.mozilla.com/D160253
This commit is contained in:
parent
8b2b4a62ba
commit
10ee72b43f
1 changed files with 6 additions and 0 deletions
|
|
@ -13995,7 +13995,13 @@
|
||||||
|
|
||||||
- name: webgl.out-of-process
|
- name: webgl.out-of-process
|
||||||
type: RelaxedAtomicBool
|
type: RelaxedAtomicBool
|
||||||
|
#if defined(XP_MACOSX) || defined(XP_WIN) || defined(XP_LINUX)
|
||||||
value: true
|
value: true
|
||||||
|
#elif defined(ANDROID) && defined(NIGHTLY_BUILD)
|
||||||
|
value: true
|
||||||
|
#else
|
||||||
|
value: false
|
||||||
|
#endif
|
||||||
mirror: always
|
mirror: always
|
||||||
|
|
||||||
- name: webgl.out-of-process.worker
|
- name: webgl.out-of-process.worker
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue