OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:leftLod
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
UpdatedTerrainPatch.java
50
private int rightLod,topLod,
leftLod
,bottomLod;
128
return
leftLod
;
132
protected void setLeftLod(int
leftLod
) {
133
this.
leftLod
=
leftLod
;
174
updatedPatch.setLodLeft(
leftLod
);
LODGeomap.java
84
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) {
88
IntBuffer ib = writeIndexArrayLodDiff(null, lod, rightLod, topLod,
leftLod
, bottomLod);
151
* @param
leftLod
LOD of the left neighbour
155
public IntBuffer writeIndexArrayLodDiff(IntBuffer store, int lod, boolean rightLod, boolean topLod, boolean
leftLod
, boolean bottomLod) {
269
if (
leftLod
) { // if lower LOD
311
if (
leftLod
) {
331
if (
leftLod
) {
358
public IntBuffer writeIndexArrayLodVariable(IntBuffer store, int lod, int rightLod, int topLod, int
leftLod
, int bottomLod) {
489
if (
leftLod
> lod) { // if lower LOD
492
int it = (getWidth() - 1) /
leftLod
; // iterations
[
all
...]
Completed in 124 milliseconds