HomeSort by relevance Sort by last modified time
    Searched refs:yoffset (Results 276 - 300 of 318) sorted by null

<<111213

  /prebuilts/ndk/8/platforms/android-8/arch-x86/usr/include/GLES/
glext.h     [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/GLES/
glext.h     [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/GLES/
glext.h     [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/GLES/
glext.h     [all...]
  /sdk/emulator/opengl/host/libs/Translator/include/GLES/
glext.h     [all...]
  /frameworks/base/core/jni/
android_opengl_GLES10.cpp 340 /* void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ) */
343 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) {
358 (GLint)yoffset,
386 /* void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height ) */
389 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) {
394 (GLint)yoffset,
    [all...]
android_opengl_GLES20.cpp 451 /* void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ) */
454 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) {
469 (GLint)yoffset,
497 /* void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height ) */
500 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) {
505 (GLint)yoffset,
    [all...]
com_google_android_gles_jni_GLImpl.cpp 468 /* void glCompressedTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ) */
471 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint width, jint height, jint format, jint imageSize, jobject data_buf) {
486 (GLint)yoffset,
514 /* void glCopyTexSubImage2D ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height ) */
517 (JNIEnv *_env, jobject _this, jint target, jint level, jint xoffset, jint yoffset, jint x, jint y, jint width, jint height) {
522 (GLint)yoffset,
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmImp.cpp 447 GL_API void GL_APIENTRY glCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) {
454 ctx->dispatcher().glTexSubImage2D(target,level,xoffset,yoffset,width,height,uncompressedFrmt,GL_UNSIGNED_BYTE,uncompressed);
465 GL_API void GL_APIENTRY glCopyTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) {
468 ctx->dispatcher().glCopyTexSubImage2D(target,level,xoffset,yoffset,x,y,width,height);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Imp.cpp 376 GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data){
379 ctx->dispatcher().glCompressedTexSubImage2D(target,level,xoffset,yoffset,width,height,format,imageSize,data);
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...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_api.cpp 865 void GLTrace_glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data) {
889 // copy argument yoffset
893 arg_yoffset->add_intvalue(yoffset);
    [all...]
  /development/tools/emulator/opengl/system/GLESv1_enc/
gl_enc.cpp 959 void glCompressedTexSubImage2D_enc(void *self , GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data)
975 memcpy(ptr, &yoffset, 4); ptr += 4;
1006 void glCopyTexSubImage2D_enc(void *self , GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
1021 memcpy(ptr, &yoffset, 4); ptr += 4;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 555 void GraphicsContext3D::copyTexSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height)
564 ::glCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
GraphicsContext3DChromium.cpp 621 void GraphicsContext3DInternal::texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, const void* pixels)
623 m_impl->texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
    [all...]
  /frameworks/native/opengl/include/GLES/
glext.h     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 1342 int yoffset = local
    [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
gbemu.js     [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_opengl.h     [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_opengl.h     [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_opengl.h     [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_opengl.h     [all...]
  /external/kernel-headers/original/linux/
fb.h 232 #define FB_VMODE_CONUPDATE 512 /* don't update x/yoffset */
257 __u32 yoffset; /* resolution */ member in struct:fb_var_screeninfo
    [all...]
  /external/skia/include/gpu/gl/
GrGLInterface.h 206 typedef GrGLvoid (GR_GL_FUNCTION_TYPE *GrGLTexSubImage2DProc)(GrGLenum target, GrGLint level, GrGLint xoffset, GrGLint yoffset, GrGLsizei width, GrGLsizei height, GrGLenum format, GrGLenum type, const GrGLvoid* pixels);
  /external/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 60 GrGLvoid GR_GL_FUNCTION_TYPE nullGLTexSubImage2D(GrGLenum target, GrGLint level, GrGLint xoffset, GrGLint yoffset, GrGLsizei width, GrGLsizei height, GrGLenum format, GrGLenum type, const GrGLvoid* pixels) {}
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]

Completed in 1188 milliseconds

<<111213