HomeSort by relevance Sort by last modified time
    Searched refs:texcoords (Results 1 - 4 of 4) sorted by null

  /system/core/libpixelflinger/
raster.cpp 180 int32_t texcoords[8]; local
200 texcoords[0] = s0;
201 texcoords[1] = dsdx;
202 texcoords[2] = 0;
203 texcoords[3] = t0;
204 texcoords[4] = 0;
205 texcoords[5] = dtdy;
206 texcoords[6] = 0;
207 texcoords[7] = 0;
208 c->procs.texCoordGradScale8xv(c, tmu, texcoords);
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
LatLongSphere.java 32 int[] texcoords = new int[2 * lats * longs]; local
78 texcoords[tidx++] = toFixed(1.0f - (theta / (TWO_PI)));
79 texcoords[tidx++] = toFixed(fj);
116 allocateBuffers(vertices, texcoords, normals, colors, indices);
Shape.java 151 * @param texcoords an array of fixed-point texture coordinates
156 public void allocateBuffers(int[] vertices, int[] texcoords, int[] normals,
158 allocate(vertices, texcoords, normals, colors);
175 * @param texcoords an array of fixed-point texture coordinates
180 public void allocateBuffers(int[] vertices, int[] texcoords, int[] normals,
182 allocate(vertices, texcoords, normals, colors);
196 private void allocate(int[] vertices, int[] texcoords, int[] normals,
205 if ((texcoords != null) && mEmitTextureCoordinates) {
207 ByteBuffer.allocateDirect(texcoords.length * INT_BYTES);
210 mTexcoordBuffer.put(texcoords);
    [all...]
  /frameworks/base/opengl/libagl/
texture.cpp 711 int32_t texcoords[8]; local
734 texcoords[0] = s0;
735 texcoords[1] = dsdx;
736 texcoords[2] = 0;
737 texcoords[3] = t0;
738 texcoords[4] = 0;
739 texcoords[5] = dtdy;
740 texcoords[6] = 0;
741 texcoords[7] = 0;
742 c->rasterizer.procs.texCoordGradScale8xv(c, i, texcoords);
    [all...]

Completed in 691 milliseconds