Home
last modified time | relevance | path

Searched refs:newIndices (Results 1 – 4 of 4) sorted by relevance

/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
DTriangleCollector.java116 int[] newIndices = new int[3]; in gatherTris() local
168 newIndices[0] = currentVertex++; in gatherTris()
169 indexCache.put(vertIndicies[0], newIndices[0]); in gatherTris()
171 newIndices[0] = i0.intValue(); in gatherTris()
176 newIndices[1] = currentVertex++; in gatherTris()
177 indexCache.put(vertIndicies[1], newIndices[1]); in gatherTris()
179 newIndices[1] = i1.intValue(); in gatherTris()
184 newIndices[2] = currentVertex++; in gatherTris()
185 indexCache.put(vertIndicies[2], newIndices[2]); in gatherTris()
187 newIndices[2] = i2.intValue(); in gatherTris()
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/
DParticleSystem.java1200 int[] newIndices = new int[m_count];
1208 newIndices[i] = Settings.invalidParticleIndex;
1210 newIndices[i] = newCount;
1233 proxy.index = newIndices[proxy.index];
1255 contact.indexA = newIndices[contact.indexA];
1256 contact.indexB = newIndices[contact.indexB];
1277 contact.index = newIndices[contact.index];
1298 pair.indexA = newIndices[pair.indexA];
1299 pair.indexB = newIndices[pair.indexB];
1318 triad.indexA = newIndices[triad.indexA];
[all …]
/external/eigen/Eigen/src/SparseCore/
DCompressedStorage.h208 Index* newIndices = new Index[size]; in reallocate() local
212 internal::smart_copy(m_indices, m_indices+copySize, newIndices); in reallocate()
217 m_indices = newIndices; in reallocate()
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
DVBOWithVAOPerformanceTest.java93 IndexBufferObjectSubData newIndices = new IndexBufferObjectSubData(false, maxIndices); in create() local
96 newVBOWithVAOMesh = new Mesh(newVBOWithVAO, newIndices, false) {}; in create()