Skip to content

Commit a4a3810

Browse files
committed
release 2.0.8
1 parent b5d4e7b commit a4a3810

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

dist/echarts-gl.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25130,8 +25130,15 @@ graphicGL.BoundingBox = math_BoundingBox;
2513025130
graphicGL.Frustum = math_Frustum;
2513125131

2513225132
// Texture utilities
25133+
var blankImage = null;
2513325134

25134-
var blankImage = util_texture.createBlank('rgba(255,255,255,0)').image;
25135+
function getBlankImage() {
25136+
if (blankImage !== null) {
25137+
return blankImage;
25138+
}
25139+
blankImage = util_texture.createBlank('rgba(255,255,255,0)').image;
25140+
return blankImage;
25141+
}
2513525142

2513625143

2513725144
function graphicGL_nearestPowerOfTwo(val) {
@@ -25279,7 +25286,7 @@ graphicGL.loadTexture = function (imgValue, api, textureOpts, cb) {
2527925286
originalImage.crossOrigin = 'Anonymous';
2528025287
originalImage.src = imgValue;
2528125288
// Use blank image as place holder.
25282-
texture.image = blankImage;
25289+
texture.image = getBlankImage();
2528325290

2528425291
textureCache.put(prefix + imgValue, textureObj);
2528525292
}
@@ -25615,6 +25622,7 @@ graphicGL.updateVertexAnimation = function (
2561525622
};
2561625623

2561725624
/* harmony default export */ const util_graphicGL = (graphicGL);
25625+
2561825626
;// CONCATENATED MODULE: ./node_modules/zrender/lib/animation/requestAnimationFrame.js
2561925627
var requestAnimationFrame;
2562025628
requestAnimationFrame = (typeof window !== 'undefined'

dist/echarts-gl.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts-gl.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "echarts-gl",
33
"description": "Extension pack of ECharts providing 3D plots and globe visualization",
4-
"version": "2.0.7",
4+
"version": "2.0.8",
55
"maintainers": [
66
{
77
"name": "Yi Shen"

0 commit comments

Comments
 (0)