lightbox: Do not assume GLSL is available
Some hardware does not support it causing crashes in cogl during paint. https://bugzilla.gnome.org/show_bug.cgi?id=733623
This commit is contained in:
parent
8625d5b0cc
commit
07e6219704
@ -105,8 +105,8 @@ const Lightbox = new Lang.Class({
|
|||||||
this._container = container;
|
this._container = container;
|
||||||
this._children = container.get_children();
|
this._children = container.get_children();
|
||||||
this._fadeFactor = params.fadeFactor;
|
this._fadeFactor = params.fadeFactor;
|
||||||
this._radialEffect = params.radialEffect;
|
this._radialEffect = Clutter.feature_available(Clutter.FeatureFlags.SHADERS_GLSL) && params.radialEffect;
|
||||||
if (params.radialEffect)
|
if (this._radialEffect)
|
||||||
this.actor = new RadialShaderQuad({ x: 0,
|
this.actor = new RadialShaderQuad({ x: 0,
|
||||||
y: 0,
|
y: 0,
|
||||||
reactive: params.inhibitEvents });
|
reactive: params.inhibitEvents });
|
||||||
|
Loading…
Reference in New Issue
Block a user