Searched refs:bottomLod (Results 1 - 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DUpdatedTerrainPatch.java50 private int rightLod,topLod,leftLod,bottomLod; field in class:UpdatedTerrainPatch
138 return bottomLod;
142 protected void setBottomLod(int bottomLod) { argument
143 this.bottomLod = bottomLod;
175 updatedPatch.setLodBottom(bottomLod);
H A DLODGeomap.java84 public Mesh createMesh(Vector3f scale, Vector2f tcScale, Vector2f tcOffset, float offsetAmount, int totalSize, boolean center, int lod, boolean rightLod, boolean topLod, boolean leftLod, boolean bottomLod) { argument
88 IntBuffer ib = writeIndexArrayLodDiff(null, lod, rightLod, topLod, leftLod, bottomLod);
152 * @param bottomLod LOD of the bottom neighbour
155 public IntBuffer writeIndexArrayLodDiff(IntBuffer store, int lod, boolean rightLod, boolean topLod, boolean leftLod, boolean bottomLod) { argument
310 if (bottomLod) { // if lower LOD
358 public IntBuffer writeIndexArrayLodVariable(IntBuffer store, int lod, int rightLod, int topLod, int leftLod, int bottomLod) { argument
533 if (bottomLod > lod) { // if lower LOD
541 int it = (getWidth() - 1) / bottomLod; // iterations
542 int lodDiff = bottomLod / lod;
544 idx = getWidth() * getWidth() - getWidth() + (i * bottomLod);
[all...]

Completed in 226 milliseconds