Searched refs:coords (Results 26 - 34 of 34) sorted by relevance

12

/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java2639 public void glDrawTexfvOES(float[] coords, int offset) { argument
2641 arg("coords", 5, coords, offset);
2644 mgl11Ext.glDrawTexfvOES(coords, offset);
2648 public void glDrawTexfvOES(FloatBuffer coords) { argument
2650 arg("coords", 5, coords);
2652 mgl11Ext.glDrawTexfvOES(coords);
2668 public void glDrawTexivOES(int[] coords, int offset) { argument
2670 arg("coords",
2677 glDrawTexivOES(IntBuffer coords) argument
2698 glDrawTexsvOES(short[] coords, int offset) argument
2707 glDrawTexsvOES(ShortBuffer coords) argument
2727 glDrawTexxvOES(int[] coords, int offset) argument
2736 glDrawTexxvOES(IntBuffer coords) argument
[all...]
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_GLImpl.cpp6789 /* void glDrawTexfvOES ( const GLfloat *coords ) */
6798 GLfloat *coords = (GLfloat *) 0; local
6803 _exceptionMessage = "coords == null";
6821 coords = coords_base + offset;
6824 (GLfloat *)coords
6837 /* void glDrawTexfvOES ( const GLfloat *coords ) */
6847 GLfloat *coords = (GLfloat *) 0; local
6849 coords = (GLfloat *)getPointer(_env, coords_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
6856 if (coords == NULL) {
6858 coords
6895 GLint *coords = (GLint *) 0; local
6944 GLint *coords = (GLint *) 0; local
6992 GLshort *coords = (GLshort *) 0; local
7041 GLshort *coords = (GLshort *) 0; local
7089 GLfixed *coords = (GLfixed *) 0; local
7138 GLfixed *coords = (GLfixed *) 0; local
[all...]
/frameworks/native/opengl/include/GLES/
H A Dglext.h615 GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords);
616 GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords);
617 GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords);
619 GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords);
624 typedef void (GL_APIENTRYP PFNGLDRAWTEXSVOESPROC) (const GLshort *coords);
625 typedef void (GL_APIENTRYP PFNGLDRAWTEXIVOESPROC) (const GLint *coords);
626 typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords);
628 typedef void (GL_APIENTRYP PFNGLDRAWTEXFVOESPROC) (const GLfloat *coords);
/frameworks/native/libs/input/
H A DInputTransport.cpp346 msg.body.motion.pointers[i].coords.copyFrom(pointerCoords[i]);
668 PointerCoords& msgCoords = msg->body.motion.pointers[i].coords;
920 pointerCoords[i].copyFrom(msg->body.motion.pointers[i].coords);
947 pointerCoords[i].copyFrom(msg->body.motion.pointers[i].coords);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java606 float[] coords = new float[6];
609 int type = it.currentSegment(coords);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp4287 const PointerCoords& coords = lastPointerData.pointerCoordsForId(mExternalStylusId); local
4288 pressure = coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE);
4290 PointerCoords& coords = currentPointerData.editPointerCoordsWithId(mExternalStylusId); local
4291 coords.setAxisValue(AMOTION_EVENT_AXIS_PRESSURE, pressure);
4841 // Adjust X,Y coords for device calibration
4842 // TODO: Adjust coverage coords?
4846 // Adjust X, Y, and coverage coords for surface orientation.
4897 // Write output coords.
5964 const PointerCoords& coords = mPointerGesture.currentGestureCoords[index]; local
5968 coords
5976 const PointerCoords& coords = mPointerGesture.lastGestureCoords[index]; local
6210 dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, int32_t action, int32_t actionButton, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, const PointerProperties* properties, const PointerCoords* coords, const uint32_t* idToIndex, BitSet32 idBits, int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime) argument
[all...]
H A DInputReader.h1297 // computed hit box, specified in touch screen coords based on known display size
1717 // Pointer coords and ids for the current and previous pointer gesture.
1870 const PointerProperties* properties, const PointerCoords* coords,
1874 // Updates pointer coords and properties for pointers with specified ids that have moved.
/frameworks/native/opengl/include/GLES2/
H A Dgl2ext.h2519 typedef void (GL_APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords);
2520 typedef void (GL_APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords);
2521 typedef void (GL_APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords);
2522 typedef void (GL_APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords);
2549 typedef void (GL_APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords);
2577 GL_APICALL void GL_APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords);
2578 GL_APICALL void GL_APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords);
2579 GL_APICALL void GL_APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords);
2580 GL_APICALL void GL_APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords);
2607 GL_APICALL void GL_APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords);
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp1464 static void assertPointerCoords(const PointerCoords& coords, argument
1468 ASSERT_NEAR(x, coords.getAxisValue(AMOTION_EVENT_AXIS_X), 1);
1469 ASSERT_NEAR(y, coords.getAxisValue(AMOTION_EVENT_AXIS_Y), 1);
1470 ASSERT_NEAR(pressure, coords.getAxisValue(AMOTION_EVENT_AXIS_PRESSURE), EPSILON);
1471 ASSERT_NEAR(size, coords.getAxisValue(AMOTION_EVENT_AXIS_SIZE), EPSILON);
1472 ASSERT_NEAR(touchMajor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MAJOR), 1);
1473 ASSERT_NEAR(touchMinor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOUCH_MINOR), 1);
1474 ASSERT_NEAR(toolMajor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOOL_MAJOR), 1);
1475 ASSERT_NEAR(toolMinor, coords.getAxisValue(AMOTION_EVENT_AXIS_TOOL_MINOR), 1);
1476 ASSERT_NEAR(orientation, coords
[all...]

Completed in 2755 milliseconds

12