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

1 2

  /frameworks/base/opengl/libagl/
state.cpp 594 void glClearStencil(GLint s) {
  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 45 void (GLAPIENTRY *glClearStencil) (GLint s);
GLEScmImp.cpp 383 GL_API void GL_APIENTRY glClearStencil( GLint s) {
385 ctx->dispatcher().glClearStencil(s);
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
GLServerState.java 73 lastSetter.put(Function.glClearStencil.getNumber(), null);
102 case glClearStencil:
DebuggerMessage.java 48 glClearStencil(18, 18),
246 case 18: return glClearStencil;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerState.java 73 lastSetter.put(Function.glClearStencil.getNumber(), null);
102 case glClearStencil:
DebuggerMessage.java 48 glClearStencil(18, 18),
246 case 18: return glClearStencil;
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 338 GL_APICALL void GL_APIENTRY glClearStencil(GLint s){
340 ctx->dispatcher().glClearStencil(s);
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 82 void (GLAPIENTRY *GLDispatch::glClearStencil)(GLint) = NULL;
318 LOAD_GL_FUNC(glClearStencil);
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 47 static void (GLAPIENTRY *glClearStencil) (GLint s);
  /external/quake/quake/src/WinQuake/
glquake.h 332 #define glClearStencil(...) do { glClearStencil(__VA_ARGS__); GLCHECK("glClearStencil");} while(0)
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
libGLESv2.cpp 659 void __stdcall glClearStencil(GLint s)
    [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 156 // C function void glClearStencil ( GLint s )
158 public native void glClearStencil(
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 79 public void glClearStencil(
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 71 glClearStencil_t glClearStencil;
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
gles.cpp 296 void glClearStencil(GLint s)
298 getDispatch()->glClearStencil(s);
    [all...]
gles_dispatch.h 71 glClearStencil_t glClearStencil;
343 glClearStencil_t set_glClearStencil(glClearStencil_t f) { glClearStencil_t retval = glClearStencil; glClearStencil = f; return retval;}
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
debugger_message.pb.cpp 257 const Message_Function Message::glClearStencil;
    [all...]
debugger_message.pb.h 331 static const Function glClearStencil = Message_Function_glClearStencil;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 121 public void glClearStencil(int s) {
122 mgl.glClearStencil(s);
  /frameworks/base/opengl/java/android/opengl/
GLES10.java 343 // C function void glClearStencil ( GLint s )
345 public static native void glClearStencil(
    [all...]
GLES20.java 464 // C function void glClearStencil ( GLint s )
466 public static native void glClearStencil(
    [all...]
GLErrorWrapper.java 130 public void glClearStencil(int s) {
132 mgl.glClearStencil(s);
    [all...]
GLLogWrapper.java     [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 311 void glClearStencil(

Completed in 461 milliseconds

1 2