rename BaseMap -> TileRenderer

This commit is contained in:
Hannes Janetzek 2013-03-16 21:04:11 +01:00
parent f9be7f1cd8
commit 77947ea1ac
2 changed files with 2 additions and 2 deletions

View File

@ -479,7 +479,7 @@ public class GLRenderer implements GLSurfaceView.Renderer {
overlays.get(i).update(mMapPosition, positionChanged, tilesChanged, mMatrices); overlays.get(i).update(mMapPosition, positionChanged, tilesChanged, mMatrices);
/* draw base layer */ /* draw base layer */
BaseMap.draw(tiles, tileCnt, pos, mMatrices); TileRenderer.draw(tiles, tileCnt, pos, mMatrices);
/* draw overlays */ /* draw overlays */
for (int i = 0, n = overlays.size(); i < n; i++) { for (int i = 0, n = overlays.size(); i < n; i++) {

View File

@ -33,7 +33,7 @@ import android.opengl.GLES20;
* *
* @author Hannes Janetzek * @author Hannes Janetzek
*/ */
public class BaseMap { public class TileRenderer {
//private final static String TAG = BaseMap.class.getName(); //private final static String TAG = BaseMap.class.getName();
// used to increase polygon-offset for each tile drawn. // used to increase polygon-offset for each tile drawn.