Skip to content

Commit

Permalink
release 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pissang committed Aug 6, 2021
1 parent b5d4e7b commit a4a3810
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions dist/echarts-gl.js
Original file line number Diff line number Diff line change
Expand Up @@ -25130,8 +25130,15 @@ graphicGL.BoundingBox = math_BoundingBox;
graphicGL.Frustum = math_Frustum;

// Texture utilities
var blankImage = null;

var blankImage = util_texture.createBlank('rgba(255,255,255,0)').image;
function getBlankImage() {
if (blankImage !== null) {
return blankImage;
}
blankImage = util_texture.createBlank('rgba(255,255,255,0)').image;
return blankImage;
}


function graphicGL_nearestPowerOfTwo(val) {
Expand Down Expand Up @@ -25279,7 +25286,7 @@ graphicGL.loadTexture = function (imgValue, api, textureOpts, cb) {
originalImage.crossOrigin = 'Anonymous';
originalImage.src = imgValue;
// Use blank image as place holder.
texture.image = blankImage;
texture.image = getBlankImage();

textureCache.put(prefix + imgValue, textureObj);
}
Expand Down Expand Up @@ -25615,6 +25622,7 @@ graphicGL.updateVertexAnimation = function (
};

/* harmony default export */ const util_graphicGL = (graphicGL);

;// CONCATENATED MODULE: ./node_modules/zrender/lib/animation/requestAnimationFrame.js
var requestAnimationFrame;
requestAnimationFrame = (typeof window !== 'undefined'
Expand Down
2 changes: 1 addition & 1 deletion dist/echarts-gl.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/echarts-gl.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "echarts-gl",
"description": "Extension pack of ECharts providing 3D plots and globe visualization",
"version": "2.0.7",
"version": "2.0.8",
"maintainers": [
{
"name": "Yi Shen"
Expand Down

0 comments on commit a4a3810

Please sign in to comment.