HomeSort by relevance Sort by last modified time
    Searched defs:glClipPlanex (Results 1 - 10 of 10) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 681 public void glClipPlanex(int plane, int[] equation, int offset) {
682 mgl11.glClipPlanex(plane, equation, offset);
685 public void glClipPlanex(int plane, IntBuffer equation) {
686 mgl11.glClipPlanex(plane, equation);
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 733 public void glClipPlanex(int arg0, IntBuffer arg1) {
734 ((GL11)mGL).glClipPlanex(arg0, arg1);
738 public void glClipPlanex(int arg0, int[] arg1, int arg2) {
739 ((GL11)mGL).glClipPlanex(arg0, arg1, arg2);
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.hpp 66 void (*glClipPlanex)(GLenum plane, const GLfixed *equation);
main.cpp 656 GL_API void GL_APIENTRY glClipPlanex(GLenum plane, const GLfixed *equation)
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_client_context.h 91 glClipPlanex_client_proc_t glClipPlanex;
gl_entry.cpp 86 void glClipPlanex(GLenum pname, const GLfixed* eqn);
779 void glClipPlanex(GLenum pname, const GLfixed* eqn)
782 ctx->glClipPlanex(ctx, pname, eqn);
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 306 void glClipPlanex(GLenum plane, const GLfixed *equation)
308 getDispatch()->glClipPlanex(plane, equation);
    [all...]
gles_dispatch.h 73 glClipPlanex_t glClipPlanex;
345 glClipPlanex_t set_glClipPlanex(glClipPlanex_t f) { glClipPlanex_t retval = glClipPlanex; glClipPlanex = f; return retval;}
    [all...]
  /device/google/cuttlefish_common/guest/libs/eglwrapper/
gles1_wrapper_context.h 91 glClipPlanex_wrapper_proc_t glClipPlanex;
gles1_wrapper_entry.cpp 86 void glClipPlanex(GLenum pname, const GLfixed* eqn);
775 void glClipPlanex(GLenum pname, const GLfixed* eqn)
778 ctx->glClipPlanex( pname, eqn);
    [all...]

Completed in 59 milliseconds