Searched refs:uvs (Results 1 - 7 of 7) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java150 public void set(int quadX, int quadY, float[][] positions, float[][] uvs) { argument
160 if (uvs.length < 4) {
167 setVertex(i, j, positions[0][0], positions[0][1], positions[0][2], uvs[0][0], uvs[0][1]);
168 setVertex(i + 1, j, positions[1][0], positions[1][1], positions[1][2], uvs[1][0], uvs[1][1]);
169 setVertex(i, j + 1, positions[2][0], positions[2][1], positions[2][2], uvs[2][0], uvs[2][1]);
170 setVertex(i + 1, j + 1, positions[3][0], positions[3][1], positions[3][2], uvs[3][0], uvs[
[all...]
H A DTiledVertexGrid.java120 final float[][] uvs = { uv0, uv1, uv2, uv3 };
122 grid.set(tileX, tileY, positions, uvs);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/
H A DObjLoader.java82 final FloatArray uvs = new FloatArray(200); field in class:ObjLoader
138 uvs.add(Float.parseFloat(tokens[1]));
139 uvs.add((flipV ? 1 - Float.parseFloat(tokens[2]) : Float.parseFloat(tokens[2])));
153 faces.add(getIndex(parts[1], uvs.size));
158 if (parts.length > 1 && parts[1].length() > 0) faces.add(getIndex(parts[1], uvs.size));
162 if (parts.length > 1 && parts[1].length() > 0) faces.add(getIndex(parts[1], uvs.size));
227 finalVerts[vi++] = uvs.get(uvIndex++);
228 finalVerts[vi++] = uvs.get(uvIndex);
284 if (uvs.size > 0) uvs
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_c_m_a_p.py1078 uvs, defOVSOffset, nonDefUVSOffset = struct.unpack(">3sLL", data[recOffset:recOffset +11])
1080 varUVS = cvtToUVS(uvs)
1127 for uvs in uvsList:
1128 uvList = uvsDict[uvs]
1134 writer.simpletag("map", [ ("uvs",hex(uvs)), ("uv",hex(uv)), ("name", gname)] )
1156 uvs = safeEval(attrs["uvs"])
1162 uvsDict[uvs].append( [uv, gname])
1164 uvsDict[uvs]
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_c_m_a_p.py1078 uvs, defOVSOffset, nonDefUVSOffset = struct.unpack(">3sLL", data[recOffset:recOffset +11])
1080 varUVS = cvtToUVS(uvs)
1127 for uvs in uvsList:
1128 uvList = uvsDict[uvs]
1134 writer.simpletag("map", [ ("uvs",hex(uvs)), ("uv",hex(uv)), ("name", gname)] )
1156 uvs = safeEval(attrs["uvs"])
1162 uvsDict[uvs].append( [uv, gname])
1164 uvsDict[uvs]
[all...]
/external/skia/bench/
H A DGameBench.cpp197 SkPoint uvs[4] = { variable
204 4, verts, uvs, nullptr, nullptr,
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktRenderPassTests.cpp2454 const Vec4 uvs = computeUvs(posAI, posBI, IVec2(x, y)); local
2455 const Vec4 color = valueMax * uvs + valueMin * (Vec4(1.0f) - uvs);
2475 const Vec4 uvs = computeUvs(posAI, posBI, IVec2(x, y)); local
2478 reference.setPixDepth(uvs.x(), x, y);

Completed in 1091 milliseconds