Add basic WEBGL LineString rendering
Use gl.LINES and hardcode a width. Implement polygon stroking using the line string replay.
This commit is contained in:
committed by
GaborFarkas
parent
8e9b589ca9
commit
e40b545e40
@@ -1,4 +1,5 @@
|
|||||||
goog.provide('ol.render.webgl.ImageReplay');
|
goog.provide('ol.render.webgl.ImageReplay');
|
||||||
|
goog.provide('ol.render.webgl.LineStringReplay');
|
||||||
goog.provide('ol.render.webgl.PolygonReplay');
|
goog.provide('ol.render.webgl.PolygonReplay');
|
||||||
goog.provide('ol.render.webgl.ReplayGroup');
|
goog.provide('ol.render.webgl.ReplayGroup');
|
||||||
|
|
||||||
@@ -909,6 +910,267 @@ ol.render.webgl.ImageReplay.prototype.setImageStyle = function(imageStyle) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @extends {ol.render.VectorContext}
|
||||||
|
* @param {number} tolerance Tolerance.
|
||||||
|
* @param {ol.Extent} maxExtent Max extent.
|
||||||
|
* @protected
|
||||||
|
* @struct
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay = function(tolerance, maxExtent) {
|
||||||
|
goog.base(this);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @type {ol.Color}
|
||||||
|
*/
|
||||||
|
this.strokeColor_ = null;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The origin of the coordinate system for the point coordinates sent to
|
||||||
|
* the GPU.
|
||||||
|
* @private
|
||||||
|
* @type {ol.Coordinate}
|
||||||
|
*/
|
||||||
|
this.origin_ = ol.extent.getCenter(maxExtent);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @type {ol.render.webgl.polygonreplay.shader.Default.Locations}
|
||||||
|
*/
|
||||||
|
this.defaultLocations_ = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {!goog.vec.Mat4.Number}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
this.projectionMatrix_ = goog.vec.Mat4.createNumberIdentity();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {Array.<number>}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
this.vertices_ = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {ol.webgl.Buffer}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
this.verticesBuffer_ = null;
|
||||||
|
};
|
||||||
|
goog.inherits(ol.render.webgl.LineStringReplay, ol.render.VectorContext);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Draw one line.
|
||||||
|
* @param {Array.<ol.Coordinate>} coordinates
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.drawCoordinates_ =
|
||||||
|
function(coordinates) {
|
||||||
|
var i, ii;
|
||||||
|
|
||||||
|
// Shift the indices to take into account previously handled lines
|
||||||
|
for (i = 0, ii = coordinates.length - 1; i < ii; ++i) {
|
||||||
|
var point1 = coordinates[i];
|
||||||
|
this.vertices_.push(point1[0]);
|
||||||
|
this.vertices_.push(point1[1]);
|
||||||
|
this.vertices_.push(this.strokeColor_[0]);
|
||||||
|
this.vertices_.push(this.strokeColor_[1]);
|
||||||
|
this.vertices_.push(this.strokeColor_[2]);
|
||||||
|
this.vertices_.push(this.strokeColor_[3]);
|
||||||
|
|
||||||
|
var point2 = coordinates[i + 1];
|
||||||
|
this.vertices_.push(point2[0]);
|
||||||
|
this.vertices_.push(point2[1]);
|
||||||
|
this.vertices_.push(this.strokeColor_[0]);
|
||||||
|
this.vertices_.push(this.strokeColor_[1]);
|
||||||
|
this.vertices_.push(this.strokeColor_[2]);
|
||||||
|
this.vertices_.push(this.strokeColor_[3]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.drawLineStringGeometry =
|
||||||
|
function(geometry, feature) {
|
||||||
|
this.drawCoordinates_(geometry.getCoordinates());
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.drawMultiLineStringGeometry =
|
||||||
|
function(geometry, feature) {
|
||||||
|
var coordinatess = geometry.getCoordinates();
|
||||||
|
var i, ii;
|
||||||
|
for (i = 0, ii = coordinatess.length; i < ii; ++i) {
|
||||||
|
this.drawCoordinates_(coordinatess[i]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {ol.webgl.Context} context Context.
|
||||||
|
**/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.finish = function(context) {
|
||||||
|
// create, bind, and populate the vertices buffer
|
||||||
|
this.verticesBuffer_ = new ol.webgl.Buffer(this.vertices_);
|
||||||
|
context.bindBuffer(goog.webgl.ARRAY_BUFFER, this.verticesBuffer_);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {ol.webgl.Context} context WebGL context.
|
||||||
|
* @return {function()} Delete resources function.
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.getDeleteResourcesFunction =
|
||||||
|
function(context) {
|
||||||
|
// We only delete our stuff here. The shaders and the program may
|
||||||
|
// be used by other LineStringReplay instances (for other layers). And
|
||||||
|
// they will be deleted when disposing of the ol.webgl.Context
|
||||||
|
// object.
|
||||||
|
goog.asserts.assert(!goog.isNull(this.verticesBuffer_),
|
||||||
|
'verticesBuffer must not be null');
|
||||||
|
var verticesBuffer = this.verticesBuffer_;
|
||||||
|
return function() {
|
||||||
|
context.deleteBuffer(verticesBuffer);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {ol.webgl.Context} context Context.
|
||||||
|
* @param {ol.Coordinate} center Center.
|
||||||
|
* @param {number} resolution Resolution.
|
||||||
|
* @param {number} rotation Rotation.
|
||||||
|
* @param {ol.Size} size Size.
|
||||||
|
* @param {number} pixelRatio Pixel ratio.
|
||||||
|
* @param {number} opacity Global opacity.
|
||||||
|
* @param {number} brightness Global brightness.
|
||||||
|
* @param {number} contrast Global contrast.
|
||||||
|
* @param {number} hue Global hue.
|
||||||
|
* @param {number} saturation Global saturation.
|
||||||
|
* @param {Object} skippedFeaturesHash Ids of features to skip.
|
||||||
|
* @param {function(ol.Feature): T|undefined} featureCallback Feature callback.
|
||||||
|
* @param {boolean} oneByOne Draw features one-by-one for the hit-detecion.
|
||||||
|
* @param {ol.Extent=} opt_hitExtent Hit extent: Only features intersecting
|
||||||
|
* this extent are checked.
|
||||||
|
* @return {T|undefined} Callback result.
|
||||||
|
* @template T
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.replay = function(context,
|
||||||
|
center, resolution, rotation, size, pixelRatio,
|
||||||
|
opacity, brightness, contrast, hue, saturation, skippedFeaturesHash,
|
||||||
|
featureCallback, oneByOne, opt_hitExtent) {
|
||||||
|
var gl = context.getGL();
|
||||||
|
|
||||||
|
// bind the vertices buffer
|
||||||
|
goog.asserts.assert(!goog.isNull(this.verticesBuffer_),
|
||||||
|
'verticesBuffer must not be null');
|
||||||
|
context.bindBuffer(goog.webgl.ARRAY_BUFFER, this.verticesBuffer_);
|
||||||
|
|
||||||
|
// get the program
|
||||||
|
var fragmentShader, vertexShader;
|
||||||
|
fragmentShader =
|
||||||
|
ol.render.webgl.polygonreplay.shader.DefaultFragment.getInstance();
|
||||||
|
vertexShader =
|
||||||
|
ol.render.webgl.polygonreplay.shader.DefaultVertex.getInstance();
|
||||||
|
var program = context.getProgram(fragmentShader, vertexShader);
|
||||||
|
|
||||||
|
// get the locations
|
||||||
|
var locations;
|
||||||
|
if (goog.isNull(this.defaultLocations_)) {
|
||||||
|
locations = new ol.render.webgl.polygonreplay.shader.Default
|
||||||
|
.Locations(gl, program);
|
||||||
|
this.defaultLocations_ = locations;
|
||||||
|
} else {
|
||||||
|
locations = this.defaultLocations_;
|
||||||
|
}
|
||||||
|
|
||||||
|
context.useProgram(program);
|
||||||
|
|
||||||
|
// enable the vertex attrib arrays
|
||||||
|
gl.enableVertexAttribArray(locations.a_position);
|
||||||
|
gl.vertexAttribPointer(locations.a_position, 2, goog.webgl.FLOAT,
|
||||||
|
false, 24, 0);
|
||||||
|
|
||||||
|
gl.enableVertexAttribArray(locations.a_color);
|
||||||
|
gl.vertexAttribPointer(locations.a_color, 4, goog.webgl.FLOAT,
|
||||||
|
false, 24, 8);
|
||||||
|
|
||||||
|
// set the "uniform" values
|
||||||
|
// TODO: use RTE to avoid jitter
|
||||||
|
var projectionMatrix = this.projectionMatrix_;
|
||||||
|
ol.vec.Mat4.makeTransform2D(projectionMatrix,
|
||||||
|
0.0, 0.0,
|
||||||
|
pixelRatio * 2 / (resolution * size[0]),
|
||||||
|
pixelRatio * 2 / (resolution * size[1]),
|
||||||
|
-rotation,
|
||||||
|
-center[0], -center[1]);
|
||||||
|
|
||||||
|
gl.uniformMatrix4fv(locations.u_projectionMatrix, false, projectionMatrix);
|
||||||
|
|
||||||
|
// draw!
|
||||||
|
var result;
|
||||||
|
if (!goog.isDef(featureCallback)) {
|
||||||
|
this.drawReplay_(gl, context, skippedFeaturesHash);
|
||||||
|
} else {
|
||||||
|
// TODO: draw feature by feature for the hit-detection
|
||||||
|
}
|
||||||
|
|
||||||
|
// disable the vertex attrib arrays
|
||||||
|
gl.disableVertexAttribArray(locations.a_position);
|
||||||
|
gl.disableVertexAttribArray(locations.a_color);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
* @param {WebGLRenderingContext} gl gl.
|
||||||
|
* @param {ol.webgl.Context} context Context.
|
||||||
|
* @param {Object} skippedFeaturesHash Ids of features to skip.
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.drawReplay_ =
|
||||||
|
function(gl, context, skippedFeaturesHash) {
|
||||||
|
if (!goog.object.isEmpty(skippedFeaturesHash)) {
|
||||||
|
// TODO: draw by blocks to skip features
|
||||||
|
} else {
|
||||||
|
var numItems = this.vertices_.length / 6;
|
||||||
|
// FIXME: not compatible with batching, hardcoding some arbitrary value
|
||||||
|
gl.lineWidth(3);
|
||||||
|
gl.drawArrays(goog.webgl.LINES, 0, numItems);
|
||||||
|
gl.lineWidth(1);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.render.webgl.LineStringReplay.prototype.setFillStrokeStyle =
|
||||||
|
function(fillStyle, strokeStyle) {
|
||||||
|
if (!goog.isNull(strokeStyle)) {
|
||||||
|
var strokeStyleColor = strokeStyle.getColor();
|
||||||
|
this.strokeColor_ = !goog.isNull(strokeStyleColor) ?
|
||||||
|
ol.color.asArray(strokeStyleColor).map(function(c, i) {
|
||||||
|
return i != 3 ? c / 255 : c;
|
||||||
|
}) : [0.0, 0.0, 0.0, 1.0];
|
||||||
|
} else {
|
||||||
|
this.strokeColor_ = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.render.VectorContext}
|
* @extends {ol.render.VectorContext}
|
||||||
@@ -927,6 +1189,12 @@ ol.render.webgl.PolygonReplay = function(tolerance, maxExtent) {
|
|||||||
this.fillColor_ = null;
|
this.fillColor_ = null;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
this.lineStringReplay_ = new ol.render.webgl.LineStringReplay(
|
||||||
|
tolerance, maxExtent);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The origin of the coordinate system for the point coordinates sent to
|
* The origin of the coordinate system for the point coordinates sent to
|
||||||
* the GPU.
|
* the GPU.
|
||||||
@@ -1020,20 +1288,6 @@ ol.render.webgl.PolygonReplay.prototype.drawCoordinates_ =
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritDoc
|
|
||||||
*/
|
|
||||||
ol.render.webgl.PolygonReplay.prototype.drawLineStringGeometry =
|
|
||||||
goog.abstractMethod;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @inheritDoc
|
|
||||||
*/
|
|
||||||
ol.render.webgl.PolygonReplay.prototype.drawMultiLineStringGeometry =
|
|
||||||
goog.abstractMethod;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
*/
|
*/
|
||||||
@@ -1064,6 +1318,14 @@ ol.render.webgl.PolygonReplay.prototype.drawPolygonGeometry =
|
|||||||
this.startIndices_.push(this.indices_.length);
|
this.startIndices_.push(this.indices_.length);
|
||||||
this.startIndicesFeature_.push(feature);
|
this.startIndicesFeature_.push(feature);
|
||||||
this.drawCoordinates_(coordinates);
|
this.drawCoordinates_(coordinates);
|
||||||
|
|
||||||
|
if (!goog.isNull(this.lineStringReplay_.strokeColor_)) {
|
||||||
|
var linearRings = polygonGeometry.getLinearRings();
|
||||||
|
var i, ii;
|
||||||
|
for (i = 0, ii = linearRings.length; i < ii; i++) {
|
||||||
|
this.lineStringReplay_.drawCoordinates_(linearRings[i].getCoordinates());
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -1084,6 +1346,7 @@ ol.render.webgl.PolygonReplay.prototype.finish = function(context) {
|
|||||||
// create, bind, and populate the indices buffer
|
// create, bind, and populate the indices buffer
|
||||||
this.indicesBuffer_ = new ol.webgl.Buffer(indices);
|
this.indicesBuffer_ = new ol.webgl.Buffer(indices);
|
||||||
context.bindBuffer(goog.webgl.ELEMENT_ARRAY_BUFFER, this.indicesBuffer_);
|
context.bindBuffer(goog.webgl.ELEMENT_ARRAY_BUFFER, this.indicesBuffer_);
|
||||||
|
this.lineStringReplay_.finish(context);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -1103,9 +1366,11 @@ ol.render.webgl.PolygonReplay.prototype.getDeleteResourcesFunction =
|
|||||||
'indicesBuffer must not be null');
|
'indicesBuffer must not be null');
|
||||||
var verticesBuffer = this.verticesBuffer_;
|
var verticesBuffer = this.verticesBuffer_;
|
||||||
var indicesBuffer = this.indicesBuffer_;
|
var indicesBuffer = this.indicesBuffer_;
|
||||||
|
var lineDeleter = this.lineStringReplay_.getDeleteResourcesFunction(context);
|
||||||
return function() {
|
return function() {
|
||||||
context.deleteBuffer(verticesBuffer);
|
context.deleteBuffer(verticesBuffer);
|
||||||
context.deleteBuffer(indicesBuffer);
|
context.deleteBuffer(indicesBuffer);
|
||||||
|
lineDeleter();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1180,8 +1445,8 @@ ol.render.webgl.PolygonReplay.prototype.replay = function(context,
|
|||||||
var projectionMatrix = this.projectionMatrix_;
|
var projectionMatrix = this.projectionMatrix_;
|
||||||
ol.vec.Mat4.makeTransform2D(projectionMatrix,
|
ol.vec.Mat4.makeTransform2D(projectionMatrix,
|
||||||
0.0, 0.0,
|
0.0, 0.0,
|
||||||
2 / (resolution * size[0]),
|
pixelRatio * 2 / (resolution * size[0]),
|
||||||
2 / (resolution * size[1]),
|
pixelRatio * 2 / (resolution * size[1]),
|
||||||
-rotation,
|
-rotation,
|
||||||
-center[0], -center[1]);
|
-center[0], -center[1]);
|
||||||
|
|
||||||
@@ -1199,6 +1464,11 @@ ol.render.webgl.PolygonReplay.prototype.replay = function(context,
|
|||||||
gl.disableVertexAttribArray(locations.a_position);
|
gl.disableVertexAttribArray(locations.a_position);
|
||||||
gl.disableVertexAttribArray(locations.a_color);
|
gl.disableVertexAttribArray(locations.a_color);
|
||||||
|
|
||||||
|
this.lineStringReplay_.replay(context,
|
||||||
|
center, resolution, rotation, size, pixelRatio,
|
||||||
|
opacity, brightness, contrast, hue, saturation, skippedFeaturesHash,
|
||||||
|
featureCallback, oneByOne, opt_hitExtent);
|
||||||
|
// FIXME get result
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1234,10 +1504,13 @@ ol.render.webgl.PolygonReplay.prototype.setFillStrokeStyle =
|
|||||||
if (!goog.isNull(fillStyle)) {
|
if (!goog.isNull(fillStyle)) {
|
||||||
var fillStyleColor = fillStyle.getColor();
|
var fillStyleColor = fillStyle.getColor();
|
||||||
this.fillColor_ = !goog.isNull(fillStyleColor) ?
|
this.fillColor_ = !goog.isNull(fillStyleColor) ?
|
||||||
ol.color.asArray(fillStyleColor) : [0.0, 0.0, 0.0, 1.0];
|
ol.color.asArray(fillStyleColor).map(function(c, i) {
|
||||||
|
return i != 3 ? c / 255.0 : c;
|
||||||
|
}) : [0.0, 0.0, 0.0, 1.0];
|
||||||
} else {
|
} else {
|
||||||
this.fillColor_ = null;
|
this.fillColor_ = null;
|
||||||
}
|
}
|
||||||
|
this.lineStringReplay_.setFillStrokeStyle(fillStyle, strokeStyle);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -1504,6 +1777,7 @@ ol.render.webgl.ReplayGroup.prototype.hasFeatureAtCoordinate = function(
|
|||||||
*/
|
*/
|
||||||
ol.render.webgl.BATCH_CONSTRUCTORS_ = {
|
ol.render.webgl.BATCH_CONSTRUCTORS_ = {
|
||||||
'Image': ol.render.webgl.ImageReplay,
|
'Image': ol.render.webgl.ImageReplay,
|
||||||
|
'LineString': ol.render.webgl.LineStringReplay,
|
||||||
'Polygon': ol.render.webgl.PolygonReplay
|
'Polygon': ol.render.webgl.PolygonReplay
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ goog.require('ol.render.webgl.ImageReplay');
|
|||||||
goog.require('ol.render.webgl.PolygonReplay');
|
goog.require('ol.render.webgl.PolygonReplay');
|
||||||
goog.require('ol.style.Fill');
|
goog.require('ol.style.Fill');
|
||||||
goog.require('ol.style.Image');
|
goog.require('ol.style.Image');
|
||||||
|
goog.require('ol.style.Stroke');
|
||||||
|
|
||||||
|
|
||||||
describe('ol.render.webgl.ImageReplay', function() {
|
describe('ol.render.webgl.ImageReplay', function() {
|
||||||
@@ -181,6 +182,9 @@ describe('ol.render.webgl.PolygonReplay', function() {
|
|||||||
var fillStyle = new ol.style.Fill({
|
var fillStyle = new ol.style.Fill({
|
||||||
color: [0, 0, 255, 0.5]
|
color: [0, 0, 255, 0.5]
|
||||||
});
|
});
|
||||||
|
var strokeStyle = new ol.style.Stroke({
|
||||||
|
color: [0, 255, 0, 0.4]
|
||||||
|
});
|
||||||
|
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
var tolerance = 0.1;
|
var tolerance = 0.1;
|
||||||
@@ -190,7 +194,7 @@ describe('ol.render.webgl.PolygonReplay', function() {
|
|||||||
|
|
||||||
describe('#drawPolygonGeometry', function() {
|
describe('#drawPolygonGeometry', function() {
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
replay.setFillStrokeStyle(fillStyle, null);
|
replay.setFillStrokeStyle(fillStyle, strokeStyle);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('sets the buffer data', function() {
|
it('sets the buffer data', function() {
|
||||||
@@ -202,11 +206,19 @@ describe('ol.render.webgl.PolygonReplay', function() {
|
|||||||
expect(replay.indices_).to.have.length(3);
|
expect(replay.indices_).to.have.length(3);
|
||||||
|
|
||||||
expect(replay.vertices_).to.eql([
|
expect(replay.vertices_).to.eql([
|
||||||
1200, 2000, 0, 0, 255, 0.5,
|
1200, 2000, 0, 0, 1, 0.5,
|
||||||
1200, 3000, 0, 0, 255, 0.5,
|
1200, 3000, 0, 0, 1, 0.5,
|
||||||
1000, 2000, 0, 0, 255, 0.5]);
|
1000, 2000, 0, 0, 1, 0.5]);
|
||||||
expect(replay.indices_).to.eql([0, 1, 2]);
|
expect(replay.indices_).to.eql([0, 1, 2]);
|
||||||
|
|
||||||
|
expect(replay.lineStringReplay_.vertices_).to.have.length(24);
|
||||||
|
expect(replay.lineStringReplay_.vertices_).to.eql([
|
||||||
|
1000, 2000, 0, 1, 0, 0.4,
|
||||||
|
1200, 2000, 0, 1, 0, 0.4,
|
||||||
|
1200, 2000, 0, 1, 0, 0.4,
|
||||||
|
1200, 3000, 0, 1, 0, 0.4
|
||||||
|
]);
|
||||||
|
|
||||||
var polygon2 = new ol.geom.Polygon(
|
var polygon2 = new ol.geom.Polygon(
|
||||||
[[[4000, 2000], [4200, 2000], [4200, 3000]]]
|
[[[4000, 2000], [4200, 2000], [4200, 3000]]]
|
||||||
);
|
);
|
||||||
@@ -215,12 +227,12 @@ describe('ol.render.webgl.PolygonReplay', function() {
|
|||||||
expect(replay.indices_).to.have.length(6);
|
expect(replay.indices_).to.have.length(6);
|
||||||
|
|
||||||
expect(replay.vertices_).to.eql([
|
expect(replay.vertices_).to.eql([
|
||||||
1200, 2000, 0, 0, 255, 0.5,
|
1200, 2000, 0, 0, 1, 0.5,
|
||||||
1200, 3000, 0, 0, 255, 0.5,
|
1200, 3000, 0, 0, 1, 0.5,
|
||||||
1000, 2000, 0, 0, 255, 0.5,
|
1000, 2000, 0, 0, 1, 0.5,
|
||||||
4200, 2000, 0, 0, 255, 0.5,
|
4200, 2000, 0, 0, 1, 0.5,
|
||||||
4200, 3000, 0, 0, 255, 0.5,
|
4200, 3000, 0, 0, 1, 0.5,
|
||||||
4000, 2000, 0, 0, 255, 0.5
|
4000, 2000, 0, 0, 1, 0.5
|
||||||
]);
|
]);
|
||||||
expect(replay.indices_).to.eql([0, 1, 2, 3, 4, 5]);
|
expect(replay.indices_).to.eql([0, 1, 2, 3, 4, 5]);
|
||||||
});
|
});
|
||||||
@@ -228,7 +240,7 @@ describe('ol.render.webgl.PolygonReplay', function() {
|
|||||||
|
|
||||||
describe('#drawMultiPolygonGeometry', function() {
|
describe('#drawMultiPolygonGeometry', function() {
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
replay.setFillStrokeStyle(fillStyle, null);
|
replay.setFillStrokeStyle(fillStyle, strokeStyle);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('sets the buffer data', function() {
|
it('sets the buffer data', function() {
|
||||||
@@ -241,12 +253,12 @@ describe('ol.render.webgl.PolygonReplay', function() {
|
|||||||
expect(replay.indices_).to.have.length(6);
|
expect(replay.indices_).to.have.length(6);
|
||||||
|
|
||||||
expect(replay.vertices_).to.eql([
|
expect(replay.vertices_).to.eql([
|
||||||
1200, 2000, 0, 0, 255, 0.5,
|
1200, 2000, 0, 0, 1, 0.5,
|
||||||
1200, 3000, 0, 0, 255, 0.5,
|
1200, 3000, 0, 0, 1, 0.5,
|
||||||
1000, 2000, 0, 0, 255, 0.5,
|
1000, 2000, 0, 0, 1, 0.5,
|
||||||
4200, 2000, 0, 0, 255, 0.5,
|
4200, 2000, 0, 0, 1, 0.5,
|
||||||
4200, 3000, 0, 0, 255, 0.5,
|
4200, 3000, 0, 0, 1, 0.5,
|
||||||
4000, 2000, 0, 0, 255, 0.5
|
4000, 2000, 0, 0, 1, 0.5
|
||||||
]);
|
]);
|
||||||
expect(replay.indices_).to.eql([0, 1, 2, 3, 4, 5]);
|
expect(replay.indices_).to.eql([0, 1, 2, 3, 4, 5]);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user