Add hue and saturation controls, thanks @evanw

This commit is contained in:
Tom Payne
2012-07-22 02:06:31 +02:00
parent 21e3f2fe83
commit f280faff67
4 changed files with 105 additions and 3 deletions
+16
View File
@@ -56,6 +56,14 @@ ol.webgl.LayerRenderer.prototype.getMap = function() {
ol.webgl.LayerRenderer.prototype.getMatrix = goog.abstractMethod;
/**
* @inheritDoc
*/
ol.webgl.LayerRenderer.prototype.handleLayerHueChange = function() {
this.dispatchChangeEvent();
};
/**
* @inheritDoc
*/
@@ -64,6 +72,14 @@ ol.webgl.LayerRenderer.prototype.handleLayerOpacityChange = function() {
};
/**
* @inheritDoc
*/
ol.webgl.LayerRenderer.prototype.handleLayerSaturationChange = function() {
this.dispatchChangeEvent();
};
/**
* @inheritDoc
*/