Searched refs:coords (Results 1 - 9 of 9) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DMatrixTrackingGL.java696 public void glDrawTexfvOES(float[] coords, int offset) { argument
697 mgl11Ext.glDrawTexfvOES(coords, offset);
700 public void glDrawTexfvOES(FloatBuffer coords) { argument
701 mgl11Ext.glDrawTexfvOES(coords);
708 public void glDrawTexivOES(int[] coords, int offset) { argument
709 mgl11Ext.glDrawTexivOES(coords, offset);
712 public void glDrawTexivOES(IntBuffer coords) { argument
713 mgl11Ext.glDrawTexivOES(coords);
721 public void glDrawTexsvOES(short[] coords, int offset) { argument
722 mgl11Ext.glDrawTexsvOES(coords, offse
725 glDrawTexsvOES(ShortBuffer coords) argument
733 glDrawTexxvOES(int[] coords, int offset) argument
737 glDrawTexxvOES(IntBuffer coords) argument
[all...]
/development/samples/HelloEffects/src/com/example/android/mediafx/
H A DTextureRenderer.java159 float[] coords = new float[] { x0, y0, x1, y0, x0, y1, x1, y1 };
160 mPosVertices.put(coords).position(0);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DStaticTriangleRenderer.java231 float[] coords = {
240 mFVertexBuffer.put(coords[i*3+j] * 2.0f);
246 mTexBuffer.put(coords[i*3+j] * 2.0f + 0.5f);
H A DTriangleRenderer.java199 float[] coords = {
208 mFVertexBuffer.put(coords[i*3+j] * 2.0f);
214 mTexBuffer.put(coords[i*3+j] * 2.0f + 0.5f);
/development/ndk/platforms/android-4/include/GLES/
H A Dglext.h483 GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords);
484 GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords);
485 GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords);
487 GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords);
492 typedef void (GL_APIENTRYP PFNGLDRAWTEXSVOESPROC) (const GLshort *coords);
493 typedef void (GL_APIENTRYP PFNGLDRAWTEXIVOESPROC) (const GLint *coords);
494 typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords);
496 typedef void (GL_APIENTRYP PFNGLDRAWTEXFVOESPROC) (const GLfloat *coords);
/development/tools/emulator/opengl/tests/gles_android_wrapper/
H A Dgles.cpp811 void glDrawTexsvOES(const GLshort *coords) argument
813 getDispatch()->glDrawTexsvOES(coords);
816 void glDrawTexivOES(const GLint *coords) argument
818 getDispatch()->glDrawTexivOES(coords);
821 void glDrawTexxvOES(const GLfixed *coords) argument
823 getDispatch()->glDrawTexxvOES(coords);
831 void glDrawTexfvOES(const GLfloat *coords) argument
833 getDispatch()->glDrawTexfvOES(coords);
/development/tools/emulator/opengl/system/GLESv1_enc/
H A Dgl_enc.h192 void glDrawTexsvOES_enc(void *self , const GLshort* coords);
193 void glDrawTexivOES_enc(void *self , const GLint* coords);
194 void glDrawTexxvOES_enc(void *self , const GLfixed* coords);
196 void glDrawTexfvOES_enc(void *self , const GLfloat* coords);
H A Dgl_entry.cpp177 void glDrawTexsvOES(const GLshort* coords);
178 void glDrawTexivOES(const GLint* coords);
179 void glDrawTexxvOES(const GLfixed* coords);
181 void glDrawTexfvOES(const GLfloat* coords);
1321 void glDrawTexsvOES(const GLshort* coords) argument
1324 ctx->glDrawTexsvOES(ctx, coords);
1327 void glDrawTexivOES(const GLint* coords) argument
1330 ctx->glDrawTexivOES(ctx, coords);
1333 void glDrawTexxvOES(const GLfixed* coords) argument
1336 ctx->glDrawTexxvOES(ctx, coords);
1345 glDrawTexfvOES(const GLfloat* coords) argument
[all...]
H A Dgl_enc.cpp2849 void glDrawTexsvOES_enc(void *self , const GLshort* coords) argument
2863 memcpy(ptr, coords, __size_coords);ptr += __size_coords;
2866 void glDrawTexivOES_enc(void *self , const GLint* coords) argument
2880 memcpy(ptr, coords, __size_coords);ptr += __size_coords;
2883 void glDrawTexxvOES_enc(void *self , const GLfixed* coords) argument
2897 memcpy(ptr, coords, __size_coords);ptr += __size_coords;
2919 void glDrawTexfvOES_enc(void *self , const GLfloat* coords) argument
2933 memcpy(ptr, coords, __size_coords);ptr += __size_coords;

Completed in 557 milliseconds