HomeSort by relevance Sort by last modified time
    Searched defs:texCoords (Results 1 - 16 of 16) sorted by null

  /frameworks/native/opengl/tests/linetex/
linetex.cpp 89 const GLfloat texCoords[4][2] = {
104 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.h 37 enum { position=0, texCoords=1 };
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state_derived.c 62 boolean texCoords[I915_TEX_UNITS], colors[2], fog, needW, face;
66 memset(texCoords, 0, sizeof(texCoords));
78 texCoords[find_mapping(fs, unit)] = TRUE;
87 /* texcoords/varyings/other generic */
90 texCoords[find_mapping(fs, unit)] = TRUE;
144 /* texcoords/varyings */
147 if (texCoords[i]) {
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_derived.c 62 boolean texCoords[I915_TEX_UNITS], colors[2], fog, needW, face;
66 memset(texCoords, 0, sizeof(texCoords));
78 texCoords[find_mapping(fs, unit)] = TRUE;
87 /* texcoords/varyings/other generic */
90 texCoords[find_mapping(fs, unit)] = TRUE;
144 /* texcoords/varyings */
147 if (texCoords[i]) {
  /frameworks/native/opengl/tests/fillrate/
fillrate.cpp 100 const GLfloat texCoords[4][2] = {
117 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderDeviceJme.java 269 FloatBuffer texCoords = (FloatBuffer) quadModTC.getData();
279 texCoords.rewind();
280 texCoords.put(startX).put(startY);
281 texCoords.put(endX).put(startY);
282 texCoords.put(endX).put(endY);
283 texCoords.put(startX).put(endY);
284 texCoords.flip();
285 quadModTC.updateData(texCoords);
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 158 const GLfixed texCoords[] = {
167 glTexCoordPointer(2, GL_FIXED, 0, texCoords);
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
GLUtils.cpp 102 float* texCoords = new float[numVertices * 2];
121 texCoords[tIndex + 0] = readFloat(buffer + index);
123 texCoords[tIndex + 1] = readFloat(buffer + index);
126 return new Mesh(vertices, normals, texCoords, numVertices);
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 239 const GLfixed texCoords[] = {
254 glTexCoordPointer(2, GL_FIXED, 0, texCoords);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 68 protected final ArrayList<Vector2f> texCoords = new ArrayList<Vector2f>();
164 texCoords.clear();
263 vx.vt = texCoords.get(vt - 1);
363 texCoords.add(readVector2());
  /frameworks/base/libs/hwui/
Layer.h 78 texCoords.set(
259 Rect texCoords;
Program.h 373 * Name of the texCoords attribute if it exists, -1 otherwise.
375 int texCoords;
OpenGLRenderer.cpp 939 layer->texCoords.set(0.0f, bounds.getHeight() / float(layer->getHeight()),
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java 425 int texCoords = parseInt(attribs.getValue("texture_coords"), 0);
426 for (int i = 0; i < texCoords; i++) {
  /external/chromium_org/third_party/skia/src/effects/
SkLightingImageFilter.cpp     [all...]
  /external/skia/src/effects/
SkLightingImageFilter.cpp     [all...]

Completed in 1265 milliseconds