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

1 2

  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11ExtensionPack.java 156 void glCopyTexImage2D(
GL10.java 370 void glCopyTexImage2D(
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 57 void (GLAPIENTRY *glCopyTexImage2D) (GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
GLEScmImp.cpp 461 GL_API void GL_APIENTRY glCopyTexImage2D( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) {
465 ctx->dispatcher().glCopyTexImage2D(target,level,internalformat,x,y,width,height,border);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 160 public void glCopyTexImage2D(int target, int level, int internalformat,
162 mgl.glCopyTexImage2D(target, level, internalformat, x, y, width,
  /external/quake/quake/src/WinQuake/
glquake.h 341 #define glCopyTexImage2D(...) do { glCopyTexImage2D(__VA_ARGS__); GLCHECK("glCopyTexImage2D");} while(0)
  /external/replicaisland/src/com/replica/replicaisland/
GLErrorLogger.java 155 public void glCopyTexImage2D(int target, int level, int internalformat,
157 ((GL10)mGL).glCopyTexImage2D( target, level, internalformat,
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
libGLESv2.cpp 976 void __stdcall glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
    [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 255 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
257 public native void glCopyTexImage2D(
    [all...]
  /gdk/samples/quake/jni/
glquake.h 341 #define glCopyTexImage2D(...) do { glCopyTexImage2D(__VA_ARGS__); GLCHECK("glCopyTexImage2D");} while(0)
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 138 public void glCopyTexImage2D(
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 382 GL_APICALL void GL_APIENTRY glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border){
386 ctx->dispatcher().glCopyTexImage2D(target,level,internalformat,x,y,width,height,border);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 86 void (GLAPIENTRY *GLDispatch::glCopyTexImage2D)(GLenum,GLint,GLenum,GLint,GLint,GLsizei,GLsizei,GLint) = NULL;
322 LOAD_GL_FUNC(glCopyTexImage2D);
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 51 static void (GLAPIENTRY *glCopyTexImage2D) (GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 185 public void glCopyTexImage2D(int target, int level, int internalformat,
188 mgl.glCopyTexImage2D(target, level, internalformat, x, y, width,
    [all...]
GLLogWrapper.java     [all...]
GLES10.java 441 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
443 public static native void glCopyTexImage2D(
    [all...]
GLES20.java 512 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
514 public static native void glCopyTexImage2D(
    [all...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 80 glCopyTexImage2D_t glCopyTexImage2D;
  /sdk/emulator/opengl/tests/gles_android_wrapper/
gles.cpp 341 void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
343 getDispatch()->glCopyTexImage2D(target, level, internalformat, x, y, width, height, border);
    [all...]
gles_dispatch.h 80 glCopyTexImage2D_t glCopyTexImage2D;
352 glCopyTexImage2D_t set_glCopyTexImage2D(glCopyTexImage2D_t f) { glCopyTexImage2D_t retval = glCopyTexImage2D; glCopyTexImage2D = f; return retval;}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
DebuggerMessage.java 54 glCopyTexImage2D(23, 23),
253 case 23: return glCopyTexImage2D;
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace.pb.cpp 590 const GLMessage_Function GLMessage::glCopyTexImage2D;
    [all...]
gltrace.pb.h     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLProtoBuf.java 84 glCopyTexImage2D(53, 53),
577 case 53: return glCopyTexImage2D;
    [all...]

Completed in 318 milliseconds

1 2