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

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 673 public void glClipPlanef(int plane, float[] equation, int offset) {
674 mgl11.glClipPlanef(plane, equation, offset);
677 public void glClipPlanef(int plane, FloatBuffer equation) {
678 mgl11.glClipPlanef(plane, equation);
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 723 public void glClipPlanef(int arg0, FloatBuffer arg1) {
724 ((GL11)mGL).glClipPlanef(arg0, arg1);
728 public void glClipPlanef(int arg0, float[] arg1, int arg2) {
729 ((GL11)mGL).glClipPlanef(arg0, arg1, arg2);
  /external/swiftshader/src/OpenGL/libGLES_CM/
libGLES_CM.hpp 65 void (*glClipPlanef)(GLenum plane, const GLfloat *equation);
main.cpp 651 GL_API void GL_APIENTRY glClipPlanef(GLenum plane, const GLfloat *equation)
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_client_context.h 16 glClipPlanef_client_proc_t glClipPlanef;
gl_entry.cpp 11 void glClipPlanef(GLenum plane, const GLfloat* equation);
327 void glClipPlanef(GLenum plane, const GLfloat* equation)
330 ctx->glClipPlanef(ctx, plane, equation);
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 71 void glClipPlanef(GLenum plane, const GLfloat *equation)
73 getDispatch()->glClipPlanef(plane, equation);
    [all...]
gles_dispatch.h 26 glClipPlanef_t glClipPlanef;
298 glClipPlanef_t set_glClipPlanef(glClipPlanef_t f) { glClipPlanef_t retval = glClipPlanef; glClipPlanef = f; return retval;}
    [all...]
  /device/google/cuttlefish_common/guest/libs/eglwrapper/
gles1_wrapper_context.h 16 glClipPlanef_wrapper_proc_t glClipPlanef;
gles1_wrapper_entry.cpp 11 void glClipPlanef(GLenum plane, const GLfloat* equation);
325 void glClipPlanef(GLenum plane, const GLfloat* equation)
328 ctx->glClipPlanef( plane, equation);
    [all...]

Completed in 56 milliseconds