OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:vertexindex
(Results
1 - 6
of
6
) sorted by null
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
MirrorModifier.java
133
int
vertexIndex
= (i - mirrorIndex) / 3;
134
if (
vertexIndex
% 3 == 0 &&
vertexIndex
<cloneIndexes.limit()) {
135
int index = cloneIndexes.get(
vertexIndex
+ 2);
136
cloneIndexes.put(
vertexIndex
+ 2, cloneIndexes.get(
vertexIndex
+ 1));
137
cloneIndexes.put(
vertexIndex
+ 1, index);
ArmatureModifier.java
283
int
vertexIndex
= 0;
288
List<Integer> vertexIndices = vertexReferenceMap.get(Integer.valueOf(
vertexIndex
));// we fetch the referenced vertices here
322
++
vertexIndex
;
/external/skia/src/gpu/
GrDrawTarget.h
777
* @param
vertexIndex
the index of the vertex in the array
784
int
vertexIndex
,
789
vertexIndex
* vertexSize);
792
int
vertexIndex
,
797
vertexIndex
* vertexSize);
803
* @param
vertexIndex
the index of the vertex in the array
[
all
...]
GrTesselatedPathRenderer.cpp
113
int
vertexIndex
[4];
114
vertexIndex
[0] = reinterpret_cast<long>(vertexData[0]);
115
vertexIndex
[1] = reinterpret_cast<long>(vertexData[1]);
116
vertexIndex
[2] = reinterpret_cast<long>(vertexData[2]);
117
vertexIndex
[3] = reinterpret_cast<long>(vertexData[3]);
119
int outIndex = tess->combine(coords,
vertexIndex
, weight);
/frameworks/base/opengl/java/android/opengl/
GLLogWrapper.java
[
all
...]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java
613
pushBoneAssign(attribs.getValue("
vertexindex
"),
Completed in 289 milliseconds