HomeSort by relevance Sort by last modified time
    Searched defs:glDisable (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/qemu/distrib/sdl-1.2.15/test/
testdyngl.c 59 void(APIENTRY*glDisable)(GLenum);
81 f->glDisable=get_funcaddr("glDisable");
156 f.glDisable(GL_TEXTURE_2D);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.h 85 FNDEF(void, glDisable, (GLenum cap));
137 #define glDisable FNPTR(glDisable)
  /frameworks/native/opengl/libagl/
state.cpp 306 void glDisable(GLenum cap) {
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 65 void (GLAPIENTRY *glDisable) (GLenum cap);
GLEScmImp.cpp 532 GL_API void GL_APIENTRY glDisable( GLenum cap) {
535 ctx->dispatcher().glDisable(GL_TEXTURE_GEN_S);
536 ctx->dispatcher().glDisable(GL_TEXTURE_GEN_T);
537 ctx->dispatcher().glDisable(GL_TEXTURE_GEN_R);
539 else ctx->dispatcher().glDisable(cap);
    [all...]
  /device/generic/goldfish/opengl/system/GLESv2_enc/
gl2_entry.cpp 47 void glDisable(GLenum cap);
458 void glDisable(GLenum cap)
461 ctx->glDisable(ctx, cap);
    [all...]
gl2_client_context.h 49 glDisable_client_proc_t glDisable;
258 virtual glDisable_client_proc_t set_glDisable(glDisable_client_proc_t f) { glDisable_client_proc_t retval = glDisable; glDisable = f; return retval;}
    [all...]
  /external/chromium_org/gpu/GLES2/
gl2chromium_autogen.h 52 #define glDisable GLES2_GET_FUN(Disable)
  /external/chromium_org/third_party/angle/src/libGLESv2/
libGLESv2.cpp     [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 205 public void glDisable(int cap) {
206 ((GL10)mGL).glDisable(cap);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 328 // C function void glDisable ( GLenum cap )
330 public native void glDisable(
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 545 GL_APICALL void GL_APIENTRY glDisable(GLenum cap){
547 ctx->dispatcher().glDisable(cap);
579 ctx->dispatcher().glDisable(GL_VERTEX_PROGRAM_POINT_SIZE);
580 ctx->dispatcher().glDisable(GL_POINT_SPRITE);
614 ctx->dispatcher().glDisable(GL_VERTEX_PROGRAM_POINT_SIZE);
615 ctx->dispatcher().glDisable(GL_POINT_SPRITE);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 94 void (GLAPIENTRY *GLDispatch::glDisable)(GLenum) = NULL;
330 LOAD_GL_FUNC(glDisable);
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 59 static void (GLAPIENTRY *glDisable) (GLenum cap);
  /device/generic/goldfish/opengl/system/GLESv1_enc/
gl_entry.cpp 73 void glDisable(GLenum cap);
695 void glDisable(GLenum cap)
698 ctx->glDisable(ctx, cap);
    [all...]
gl_client_context.h 75 glDisable_client_proc_t glDisable;
367 virtual glDisable_client_proc_t set_glDisable(glDisable_client_proc_t f) { glDisable_client_proc_t retval = glDisable; glDisable = f; return retval;}
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
gles.cpp 381 void glDisable(GLenum cap)
383 getDispatch()->glDisable(cap);
    [all...]
gles_dispatch.h 88 glDisable_t glDisable;
360 glDisable_t set_glDisable(glDisable_t f) { glDisable_t retval = glDisable; glDisable = f; return retval;}
    [all...]
  /external/chromium_org/ppapi/lib/gl/gles2/
gles2.c 211 void GL_APIENTRY glDisable(GLenum cap) {
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 88 glDisable_t glDisable;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 200 public void glDisable(int cap) {
201 mgl.glDisable(cap);
  /frameworks/base/opengl/java/android/opengl/
GLES10.java 514 // C function void glDisable ( GLenum cap )
516 public static native void glDisable(
    [all...]
GLES20.java     [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 425 void glDisable(
  /external/chromium_org/ppapi/lib/gl/include/GLES2/
gl2.h 528 #define glDisable GLES2_GET_FUN(Disable)
677 GL_APICALL void GL_APIENTRY glDisable (GLenum cap);
    [all...]

Completed in 2628 milliseconds

1 2 3