satellite-view
Advanced tools
Comparing version 2.1.1 to 2.1.2
@@ -121,4 +121,4 @@ function setParams(userParams) { | ||
vec4 sampleLOD(sampler2D samplers[nLod], vec2 coords[nLod]) { | ||
return ${args.buildSelector}texture(samplers[0], coords[0]); | ||
vec4 sampleLOD(vec2 coords[nLod]) { | ||
return ${args.buildSelector}texture(uTextureSampler[0], coords[0]); | ||
} | ||
@@ -134,3 +134,3 @@ | ||
return sampleLOD(uTextureSampler, texCoords); | ||
return sampleLOD(texCoords); | ||
} | ||
@@ -245,3 +245,3 @@ `; | ||
while (--n) selector += `inside(coords[${n}]) | ||
? texture(samplers[${n}], coords[${n}]) | ||
? texture(uTextureSampler[${n}], coords[${n}]) | ||
: `; | ||
@@ -248,0 +248,0 @@ return selector; |
{ | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"files": [ | ||
@@ -18,10 +18,10 @@ "dist" | ||
"devDependencies": { | ||
"@rollup/plugin-node-resolve": "^13.0.6", | ||
"eslint": "^8.3.0", | ||
"@rollup/plugin-node-resolve": "^13.2.1", | ||
"eslint": "^8.13.0", | ||
"eslint-config-globeletjs": "^0.0.6", | ||
"rollup": "^2.60.2", | ||
"rollup": "^2.70.2", | ||
"tile-frame": "^1.1.0", | ||
"tile-rack": "^0.2.1", | ||
"tile-setter": "^0.1.5", | ||
"yawgl": "^0.4.0" | ||
"yawgl": "^0.4.3" | ||
}, | ||
@@ -28,0 +28,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14733