Skip to content

Commit

Permalink
Line texture: use fixed intermediate scaling, #105
Browse files Browse the repository at this point in the history
  • Loading branch information
devemux86 committed Aug 7, 2016
1 parent b58dbc6 commit f55fb50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vtm/src/org/oscim/renderer/BucketRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public synchronized void render(GLViewport v) {
case TEXLINE:
b = LineTexBucket.Renderer.draw(b,
v,
FastMath.pow(layerPos.zoomLevel - v.pos.zoomLevel),
FastMath.pow(layerPos.zoomLevel - v.pos.zoomLevel) * (float) layerPos.getZoomScale(),
buckets);
break;
case MESH:
Expand Down

0 comments on commit f55fb50

Please sign in to comment.