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

1 2

  /development/tools/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 462 GL_API void GL_APIENTRY glCopyTexImage2D( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) {
466 ctx->dispatcher().glCopyTexImage2D(target,level,internalformat,x,y,width,height,border);
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11ExtensionPack.java 156 void glCopyTexImage2D(
GL10.java 370 void glCopyTexImage2D(
  /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,
  /development/tools/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...]
  /development/tools/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);
  /development/tools/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);
  /external/quake/quake/src/WinQuake/
glquake.h 341 #define glCopyTexImage2D(...) do { glCopyTexImage2D(__VA_ARGS__); GLCHECK("glCopyTexImage2D");} while(0)
  /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 254 // C function void glCopyTexImage2D ( GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
256 public native void glCopyTexImage2D(
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLCanvasImpl.java 650 gl.glCopyTexImage2D(GL11.GL_TEXTURE_2D, 0,
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 138 public void glCopyTexImage2D(
  /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...]
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 80 glCopyTexImage2D_t glCopyTexImage2D;
  /development/tools/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...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
debugger_message.pb.cpp 262 const Message_Function Message::glCopyTexImage2D;
    [all...]
debugger_message.pb.h 336 static const Function glCopyTexImage2D = Message_Function_glCopyTexImage2D;
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
DebuggerMessage.java 53 glCopyTexImage2D(23, 23),
251 case 23: return glCopyTexImage2D;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
DebuggerMessage.java 53 glCopyTexImage2D(23, 23),
251 case 23: return glCopyTexImage2D;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
gl_mangle.h 235 #define glCopyTexImage2D MANGLE(CopyTexImage2D)
    [all...]

Completed in 648 milliseconds

1 2