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

1 2

  /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) {
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLMock.java 38 // glEnable, glDisable
94 public void glDisable(int cap) {
GLStub.java 193 public void glDisable(
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 65 void (GLAPIENTRY *glDisable) (GLenum cap);
GLEScmImp.cpp 535 GL_API void GL_APIENTRY glDisable( GLenum cap) {
538 ctx->dispatcher().glDisable(GL_TEXTURE_GEN_S);
539 ctx->dispatcher().glDisable(GL_TEXTURE_GEN_T);
540 ctx->dispatcher().glDisable(GL_TEXTURE_GEN_R);
542 else ctx->dispatcher().glDisable(cap);
    [all...]
  /external/quake/quake/src/WinQuake/
glquake.h 349 #define glDisable(...) do { glDisable(__VA_ARGS__); GLCHECK("glDisable");} while(0)
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 205 public void glDisable(int cap) {
206 ((GL10)mGL).glDisable(cap);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
libGLESv2.cpp     [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 328 // C function void glDisable ( GLenum cap )
330 public native void glDisable(
    [all...]
  /gdk/samples/quake/jni/
glquake.h 349 #define glDisable(...) do { glDisable(__VA_ARGS__); GLCHECK("glDisable");} while(0)
  /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);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 88 glDisable_t glDisable;
  /sdk/emulator/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...]
  /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...]
GLErrorWrapper.java 243 public void glDisable(int cap) {
245 mgl.glDisable(cap);
    [all...]
GLLogWrapper.java     [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 425 void glDisable(
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
DebuggerMessage.java 69 glDisable(38, 38),
268 case 38: return glDisable;
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp 619 const GLMessage_Function GLMessage::glDisable;
    [all...]

Completed in 383 milliseconds

1 2