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

1 2

  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLDispatch.h 58 void (GLAPIENTRY *glCopyTexSubImage2D) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
GLEScmImp.cpp 469 GL_API void GL_APIENTRY glCopyTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
472 ctx->dispatcher().glCopyTexSubImage2D(target,level,xoffset,yoffset,x,y,width,height);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 166 public void glCopyTexSubImage2D(int target, int level, int xoffset,
168 mgl.glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width,
  /development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 389 GL_APICALL void GL_APIENTRY glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height){
392 ctx->dispatcher().glCopyTexSubImage2D(target,level,xoffset,yoffset,x,y,width,height);
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLDispatch.cpp 87 void (GLAPIENTRY *GLDispatch::glCopyTexSubImage2D)(GLenum,GLint,GLint,GLint,GLint,GLint,GLsizei,GLsizei) = NULL;
323 LOAD_GL_FUNC(glCopyTexSubImage2D);
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLDispatch.h 52 static void (GLAPIENTRY *glCopyTexSubImage2D) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
  /external/quake/quake/src/WinQuake/
glquake.h 342 #define glCopyTexSubImage2D(...) do { glCopyTexSubImage2D(__VA_ARGS__); GLCHECK("glCopyTexSubImage2D");} while(0)
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
libGLESv2.cpp 1130 void __stdcall glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
    [all...]
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 267 // C function void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
269 public native void glCopyTexSubImage2D(
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLStub.java 149 public void glCopyTexSubImage2D(
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 193 public void glCopyTexSubImage2D(int target, int level, int xoffset,
196 mgl.glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width,
    [all...]
GLLogWrapper.java     [all...]
GLES10.java 454 // C function void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
456 public static native void glCopyTexSubImage2D(
    [all...]
GLES20.java 525 // C function void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height )
527 public static native void glCopyTexSubImage2D(
    [all...]
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GLDispatch.h 81 glCopyTexSubImage2D_t glCopyTexSubImage2D;
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
gles.cpp 346 void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
348 getDispatch()->glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
    [all...]
gles_dispatch.h 81 glCopyTexSubImage2D_t glCopyTexSubImage2D;
353 glCopyTexSubImage2D_t set_glCopyTexSubImage2D(glCopyTexSubImage2D_t f) { glCopyTexSubImage2D_t retval = glCopyTexSubImage2D; glCopyTexSubImage2D = f; return retval;}
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
debugger_message.pb.cpp 263 const Message_Function Message::glCopyTexSubImage2D;
    [all...]
debugger_message.pb.h 337 static const Function glCopyTexSubImage2D = Message_Function_glCopyTexSubImage2D;
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
DebuggerMessage.java 54 glCopyTexSubImage2D(24, 24),
252 case 24: return glCopyTexSubImage2D;
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10.java 381 void glCopyTexSubImage2D(
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
DebuggerMessage.java 54 glCopyTexSubImage2D(24, 24),
252 case 24: return glCopyTexSubImage2D;
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
gl_mangle.h 239 #define glCopyTexSubImage2D MANGLE(CopyTexSubImage2D)
    [all...]
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 1388 milliseconds

1 2