fix: dont let TextureBuckets interfere with other bucket 'levels'
- make TextureLayer.textures protected
This commit is contained in:
parent
3a30476f7e
commit
66653df3dc
@ -20,9 +20,11 @@ import static org.oscim.renderer.MapRenderer.COORD_SCALE;
|
||||
|
||||
import org.oscim.backend.CanvasAdapter;
|
||||
import org.oscim.backend.canvas.Canvas;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class TextBucket extends TextureBucket {
|
||||
//static final Logger log = LoggerFactory.getLogger(TextureLayer.class);
|
||||
static final Logger log = LoggerFactory.getLogger(TextBucket.class);
|
||||
|
||||
protected final static int LBIT_MASK = 0xfffffffe;
|
||||
|
||||
@ -44,6 +46,7 @@ public class TextBucket extends TextureBucket {
|
||||
super(RenderBucket.SYMBOL);
|
||||
mCanvas = CanvasAdapter.newCanvas();
|
||||
fixed = true;
|
||||
level = -1;
|
||||
}
|
||||
|
||||
public void addText(TextItem item) {
|
||||
@ -82,7 +85,6 @@ public class TextBucket extends TextureBucket {
|
||||
public void prepare() {
|
||||
short numIndices = 0;
|
||||
short offsetIndices = 0;
|
||||
numVertices = 0;
|
||||
|
||||
int advanceY = 0;
|
||||
float x = 0;
|
||||
|
@ -51,7 +51,7 @@ public abstract class TextureBucket extends RenderBucket {
|
||||
}
|
||||
|
||||
/** holds textures and offset in vbo */
|
||||
public TextureItem textures;
|
||||
protected TextureItem textures;
|
||||
|
||||
/** scale mode */
|
||||
public boolean fixed;
|
||||
@ -66,14 +66,10 @@ public abstract class TextureBucket extends RenderBucket {
|
||||
compileVertexItems(vboData);
|
||||
}
|
||||
|
||||
|
||||
protected void clear() {
|
||||
while (textures != null)
|
||||
textures = textures.dispose();
|
||||
|
||||
vertexItems.dispose();
|
||||
|
||||
numVertices = 0;
|
||||
super.clear();
|
||||
}
|
||||
|
||||
static class Shader extends GLShader {
|
||||
@ -132,7 +128,6 @@ public abstract class TextureBucket extends RenderBucket {
|
||||
1f / (t.width * COORD_SCALE),
|
||||
1f / (t.height * COORD_SCALE));
|
||||
t.bind();
|
||||
|
||||
int maxIndices = MapRenderer.maxQuads * INDICES_PER_SPRITE;
|
||||
|
||||
/* draw up to maxVertices in each iteration */
|
||||
@ -164,4 +159,8 @@ public abstract class TextureBucket extends RenderBucket {
|
||||
return l.next;
|
||||
}
|
||||
}
|
||||
|
||||
public TextureItem getTextures() {
|
||||
return textures;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user