geojs 1.10.5 → 1.10.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/geo.js CHANGED
@@ -27887,7 +27887,7 @@ module.exports = sceneObject;
27887
27887
  * @constant
27888
27888
  * @type {string}
27889
27889
  */
27890
- module.exports = "7f57d37e7c28f7be33fbb0081cbd16304d8dffd5";
27890
+ module.exports = "52900ff9b31db04903654e968c3bf6e7bcc3bffb";
27891
27891
 
27892
27892
  /***/ }),
27893
27893
 
@@ -41047,7 +41047,7 @@ module.exports = vectorFeature;
41047
41047
  * @constant
41048
41048
  * @type {string}
41049
41049
  */
41050
- module.exports = "1.10.5";
41050
+ module.exports = "1.10.6";
41051
41051
 
41052
41052
  /***/ }),
41053
41053
 
@@ -45718,7 +45718,7 @@ var webgl_quadFeature = function webgl_quadFeature(arg) {
45718
45718
  }
45719
45719
 
45720
45720
  m_quads.imgQuads.forEach(function (quad) {
45721
- if (quad.image && quad.texture && quad.texture.nearestPixel() !== nearestPixel) {
45721
+ if (quad.image && quad.texture && quad.texture.nearestPixel() !== nearestPixel && quad.texture.textureHandle()) {
45722
45722
  /* This could just be
45723
45723
  * quad.texture.setNearestPixel(nearestPixel);
45724
45724
  * but that needlessly redecodes the image. Instead, just change the
package/geo.lean.js CHANGED
@@ -27887,7 +27887,7 @@ module.exports = sceneObject;
27887
27887
  * @constant
27888
27888
  * @type {string}
27889
27889
  */
27890
- module.exports = "7f57d37e7c28f7be33fbb0081cbd16304d8dffd5";
27890
+ module.exports = "52900ff9b31db04903654e968c3bf6e7bcc3bffb";
27891
27891
 
27892
27892
  /***/ }),
27893
27893
 
@@ -41047,7 +41047,7 @@ module.exports = vectorFeature;
41047
41047
  * @constant
41048
41048
  * @type {string}
41049
41049
  */
41050
- module.exports = "1.10.5";
41050
+ module.exports = "1.10.6";
41051
41051
 
41052
41052
  /***/ }),
41053
41053
 
@@ -45718,7 +45718,7 @@ var webgl_quadFeature = function webgl_quadFeature(arg) {
45718
45718
  }
45719
45719
 
45720
45720
  m_quads.imgQuads.forEach(function (quad) {
45721
- if (quad.image && quad.texture && quad.texture.nearestPixel() !== nearestPixel) {
45721
+ if (quad.image && quad.texture && quad.texture.nearestPixel() !== nearestPixel && quad.texture.textureHandle()) {
45722
45722
  /* This could just be
45723
45723
  * quad.texture.setNearestPixel(nearestPixel);
45724
45724
  * but that needlessly redecodes the image. Instead, just change the