HomeSort by relevance Sort by last modified time
    Searched refs:texcoords (Results 1 - 8 of 8) 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...]
  /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...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleTriMesh.java 91 // set texcoords
167 FloatBuffer texcoords = (FloatBuffer) tvb.getData(); local
190 texcoords.clear();
257 texcoords.put(startX).put(endY);
258 texcoords.put(endX).put(endY);
259 texcoords.put(startX).put(startY);
260 texcoords.put(endX).put(startY);
273 texcoords.clear();
275 texcoords.clear();
276 tvb.updateData(texcoords);
    [all...]
ParticlePointMesh.java 126 FloatBuffer texcoords = (FloatBuffer) tvb.getData(); local
134 texcoords.rewind();
153 texcoords.put(startX).put(startY).put(endX).put(endY);
158 texcoords.flip();
164 tvb.updateData(texcoords);
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 64 VertexBuffer texcoords = mesh.getBuffer(Type.TexCoord); local
97 // texcoords
98 fb = (FloatBuffer) texcoords.getData();
101 texcoords.getNumComponents(),
106 newTcVb.setupData(texcoords.getUsage(),
107 texcoords.getNumComponents(),
  /frameworks/native/opengl/libagl/
texture.cpp 706 int32_t texcoords[8]; local
729 texcoords[0] = s0;
730 texcoords[1] = dsdx;
731 texcoords[2] = 0;
732 texcoords[3] = t0;
733 texcoords[4] = 0;
734 texcoords[5] = dtdy;
735 texcoords[6] = 0;
736 texcoords[7] = 0;
737 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 264 milliseconds