HomeSort by relevance Sort by last modified time
    Searched refs:texcoords (Results 1 - 7 of 7) 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...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathCache.h 65 const float* texcoords() const function in class:WebCore::LoopBlinnPathCache
  /external/mesa3d/src/pixelflinger2/
llvm_texture.cpp 282 std::vector<Value * > texcoords = extractVector(builder, in1); local
305 /*sType, */texcoords[0], textureWidth, textureW, &xLerp);
307 /*tType, */texcoords[1], textureHeight, textureH, &yLerp);
379 std::vector<Value * > texcoords = extractVector(builder, in1); local
395 Value * mx = Fabs(builder, texcoords[0]), * my = Fabs(builder, texcoords[1]);
396 Value * mz = Fabs(builder, texcoords[2]);
409 condBranch.ifCond(FPositive(builder, texcoords[0]));
412 builder.CreateStore(builder.CreateFNeg(texcoords[2]), sPtr);
413 builder.CreateStore(builder.CreateFNeg(texcoords[1]), tPtr)
    [all...]
  /frameworks/base/opengl/libagl/
texture.cpp 707 int32_t texcoords[8]; local
730 texcoords[0] = s0;
731 texcoords[1] = dsdx;
732 texcoords[2] = 0;
733 texcoords[3] = t0;
734 texcoords[4] = 0;
735 texcoords[5] = dtdy;
736 texcoords[6] = 0;
737 texcoords[7] = 0;
738 c->rasterizer.procs.texCoordGradScale8xv(c, i, texcoords);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.cpp 725 m_context->bufferSubData(GraphicsContext3D::ARRAY_BUFFER, byteSizeOfVertices, byteSizeOfTexCoords, m_pathCache.texcoords());
    [all...]

Completed in 185 milliseconds