Open
Bug 1952590
Opened 17 days ago
Updated 17 days ago
clampIndirectArrayBounds:true not set on Mac
Categories
(Core :: Graphics: CanvasWebGL, defect, P1)
Core
Graphics: CanvasWebGL
Tracking
()
NEW
People
(Reporter: jgilbert, Assigned: jgilbert)
Details
Attachments
(1 file)
Currently:
#ifdef XP_MACOSX
options.removeInvariantAndCentroidForESSL3 = true;
#else
// We want to do this everywhere, but to do this on Mac, we need
// to do it only on Mac OSX > 10.6 as this causes the shader
// compiler in 10.6 to crash
options.clampIndirectArrayBounds = true;
#endif
But we don't support 10.6 anymore, so we should drop this conditionality and always set it to true.
Assignee | ||
Updated•17 days ago
|
Summary: clampIndirectArrayBounds:true on Mac → clampIndirectArrayBounds:true not set on Mac
Assignee | ||
Comment 1•17 days ago
|
||
You need to log in
before you can comment on or make changes to this bug.
Description
•