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

1 2

  /frameworks/base/opengl/libagl/
state.cpp 543 void glDepthFunc(GLenum func) {
  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 62 void (GLAPIENTRY *glDepthFunc) (GLenum func);
GLEScmImp.cpp 515 GL_API void GL_APIENTRY glDepthFunc( GLenum func) {
517 ctx->dispatcher().glDepthFunc(func);
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
GLServerState.java 77 lastSetter.put(Function.glDepthFunc.getNumber(), null);
106 case glDepthFunc:
DebuggerMessage.java 64 glDepthFunc(34, 34),
262 case 34: return glDepthFunc;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerState.java 77 lastSetter.put(Function.glDepthFunc.getNumber(), null);
106 case glDepthFunc:
DebuggerMessage.java 64 glDepthFunc(34, 34),
262 case 34: return glDepthFunc;
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 512 GL_APICALL void GL_APIENTRY glDepthFunc(GLenum func){
514 ctx->dispatcher().glDepthFunc(func);
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 91 void (GLAPIENTRY *GLDispatch::glDepthFunc)(GLenum) = NULL;
327 LOAD_GL_FUNC(glDepthFunc);
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 56 static void (GLAPIENTRY *glDepthFunc) (GLenum func);
  /external/quake/quake/src/WinQuake/
glquake.h 346 #define glDepthFunc(...) do { glDepthFunc(__VA_ARGS__); GLCHECK("glDepthFunc");} while(0)
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 185 public void glDepthFunc(int func) {
186 ((GL10)mGL).glDepthFunc(func);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
libGLESv2.cpp     [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 301 // C function void glDepthFunc ( GLenum func )
303 public native void glDepthFunc(
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 175 public void glDepthFunc(
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 85 glDepthFunc_t glDepthFunc;
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
gles.cpp 366 void glDepthFunc(GLenum func)
368 getDispatch()->glDepthFunc(func);
    [all...]
gles_dispatch.h 85 glDepthFunc_t glDepthFunc;
357 glDepthFunc_t set_glDepthFunc(glDepthFunc_t f) { glDepthFunc_t retval = glDepthFunc; glDepthFunc = f; return retval;}
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
debugger_message.pb.cpp 273 const Message_Function Message::glDepthFunc;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 184 public void glDepthFunc(int func) {
185 mgl.glDepthFunc(func);
  /frameworks/base/opengl/java/android/opengl/
GLES10.java 488 // C function void glDepthFunc ( GLenum func )
490 public static native void glDepthFunc(
    [all...]
GLES20.java     [all...]
GLErrorWrapper.java 219 public void glDepthFunc(int func) {
221 mgl.glDepthFunc(func);
    [all...]
GLLogWrapper.java     [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 407 void glDepthFunc(

Completed in 755 milliseconds

1 2