mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 14:58:37 +09:00
[WebGL] Flip the validation state for gl_KHR_no_validation.
The original state was inverted due to confusion due to a double negative (not:no_error). This validation should only be enabled on Windows (for now). Future tracking and discussion in BZ 1862039
This commit is contained in:
parent
114daae894
commit
56bcdf7ca0
1 changed files with 2 additions and 2 deletions
|
|
@ -4340,9 +4340,9 @@ pref("webgl.dxgl.needs-finish", false);
|
|||
|
||||
// Disable ANGLE's validation layer?
|
||||
#ifdef XP_WIN
|
||||
pref("webgl.gl_khr_no_validation", true);
|
||||
#else
|
||||
pref("webgl.gl_khr_no_validation", false);
|
||||
#else
|
||||
pref("webgl.gl_khr_no_validation", true);
|
||||
#endif
|
||||
|
||||
pref("gfx.offscreencanvas.enabled", false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue