Searched refs:texCoords (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/libs/hwui/
H A DProgram.cpp48 texCoords = bindAttrib("texCoords", kBindingTexCoords);
50 texCoords = -1;
183 if (texCoords >= 0 && !mHasSampler) {
H A DLayer.h65 texCoords.set(
241 Rect texCoords; member in struct:android::uirenderer::Layer
H A DLayerRenderer.cpp216 layer->texCoords.set(0.0f, height / float(layer->getHeight()),
261 layer->texCoords.set(0.0f, height / float(layer->getHeight()),
283 layer->texCoords.set(0.0f, 1.0f, 1.0f, 0.0f);
H A DOpenGLRenderer.h578 * @param texCoords The texture coordinates of each vertex
588 GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount,
726 void setupDrawMesh(GLvoid* vertices, GLvoid* texCoords = NULL, GLuint vbo = 0);
727 void setupDrawMeshIndices(GLvoid* vertices, GLvoid* texCoords);
H A DProgram.h368 * Name of the texCoords attribute if it exists, -1 otherwise.
370 int texCoords; member in class:android::uirenderer::Program
H A DOpenGLRenderer.cpp746 layer->texCoords.set(0.0f, bounds.getHeight() / float(layer->getHeight()),
943 const Rect& texCoords = layer->texCoords; local
944 resetDrawTextureTexCoords(texCoords.left, texCoords.top,
945 texCoords.right, texCoords.bottom);
1529 void OpenGLRenderer::setupDrawMesh(GLvoid* vertices, GLvoid* texCoords, GLuint vbo) { argument
1538 if (mCaches.currentProgram->texCoords >= 0) {
1539 mCaches.bindTexCoordsVertexPointer(force, texCoords);
1545 setupDrawMeshIndices(GLvoid* vertices, GLvoid* texCoords) argument
3084 drawTextureMesh(float left, float top, float right, float bottom, GLuint texture, float alpha, SkXfermode::Mode mode, bool blend, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool swapSrcDst, bool ignoreTransform, GLuint vbo, bool ignoreScale, bool dirty) argument
[all...]
H A DCaches.cpp357 GLuint slot = currentProgram->texCoords;
/frameworks/native/services/surfaceflinger/
H A DLayerBase.cpp417 TexCoords texCoords[4]; local
418 texCoords[0].u = left;
419 texCoords[0].v = top;
420 texCoords[1].u = left;
421 texCoords[1].v = bottom;
422 texCoords[2].u = right;
423 texCoords[2].v = bottom;
424 texCoords[3].u = right;
425 texCoords[3].v = top;
427 texCoords[
[all...]
/frameworks/native/opengl/tests/linetex/
H A Dlinetex.cpp89 const GLfloat texCoords[4][2] = { local
104 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp100 const GLfloat texCoords[4][2] = { local
117 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp148 const GLfloat texCoords[4][2] = {
177 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp158 const GLfixed texCoords[] = { local
167 glTexCoordPointer(2, GL_FIXED, 0, texCoords);
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp239 const GLfixed texCoords[] = { local
254 glTexCoordPointer(2, GL_FIXED, 0, texCoords);
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp348 const GLfixed texCoords[] = {
358 glTexCoordPointer(2, GL_FIXED, 0, texCoords);

Completed in 643 milliseconds