make final
This commit is contained in:
parent
32ba8bbae0
commit
344f4d7030
@ -38,8 +38,9 @@ public class ExtrusionLayer extends Layer {
|
|||||||
private final static String TAG = ExtrusionLayer.class.getName();
|
private final static String TAG = ExtrusionLayer.class.getName();
|
||||||
private static final float S = GLRenderer.COORD_MULTIPLIER;
|
private static final float S = GLRenderer.COORD_MULTIPLIER;
|
||||||
private int mNumVertices = 0;
|
private int mNumVertices = 0;
|
||||||
private VertexPoolItem mVertices, mCurVertices;
|
private final VertexPoolItem mVertices;
|
||||||
private VertexPoolItem mIndices[], mCurIndices[];
|
private VertexPoolItem mCurVertices;
|
||||||
|
private final VertexPoolItem mIndices[], mCurIndices[];
|
||||||
private LineClipper mClipper;
|
private LineClipper mClipper;
|
||||||
|
|
||||||
// indices for:
|
// indices for:
|
||||||
@ -290,7 +291,7 @@ public class ExtrusionLayer extends Layer {
|
|||||||
|
|
||||||
/* check if face is within tile */
|
/* check if face is within tile */
|
||||||
if (!mClipper.clipNext((int) nx, (int) ny)) {
|
if (!mClipper.clipNext((int) nx, (int) ny)) {
|
||||||
even = (even + 1) % 2;
|
even = (even == 0 ? 1 : 0);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user