Move ol.CanvasStrokeState to ol/render/canvas

This commit is contained in:
Michael Kuenzli
2018-04-18 14:37:06 +02:00
parent 113785f048
commit 6096f84be2
4 changed files with 20 additions and 20 deletions

View File

@@ -76,7 +76,7 @@ const CanvasImmediateRenderer = function(context, pixelRatio, extent, transform,
/**
* @private
* @type {?ol.CanvasStrokeState}
* @type {?module:ol/render/canvas~StrokeState}
*/
this.contextStrokeState_ = null;
@@ -94,7 +94,7 @@ const CanvasImmediateRenderer = function(context, pixelRatio, extent, transform,
/**
* @private
* @type {?ol.CanvasStrokeState}
* @type {?module:ol/render/canvas~StrokeState}
*/
this.strokeState_ = null;
@@ -214,7 +214,7 @@ const CanvasImmediateRenderer = function(context, pixelRatio, extent, transform,
/**
* @private
* @type {?ol.CanvasStrokeState}
* @type {?module:ol/render/canvas~StrokeState}
*/
this.textStrokeState_ = null;
@@ -718,7 +718,7 @@ CanvasImmediateRenderer.prototype.setContextFillState_ = function(fillState) {
/**
* @param {ol.CanvasStrokeState} strokeState Stroke state.
* @param {module:ol/render/canvas~StrokeState} strokeState Stroke state.
* @private
*/
CanvasImmediateRenderer.prototype.setContextStrokeState_ = function(strokeState) {