/external/webkit/Source/WebKit/chromium/src/ |
D | Extensions3DChromium.cpp | 70 void Extensions3DChromium::blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dst… in blitFramebuffer() argument 72 …m_internal->blitFramebufferCHROMIUM(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, … in blitFramebuffer()
|
D | GraphicsContext3DInternal.h | 271 …void blitFramebufferCHROMIUM(GC3Dint srcX0, GC3Dint srcY0, GC3Dint srcX1, GC3Dint srcY1, GC3Dint d…
|
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
D | Extensions3DOpenGL.cpp | 137 void Extensions3DOpenGL::blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0… in blitFramebuffer() argument 139 ::glBlitFramebufferEXT(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in blitFramebuffer()
|
D | Extensions3DOpenGL.h | 46 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | Extensions3DQt.h | 42 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
|
D | Extensions3DQt.cpp | 65 void Extensions3DQt::blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, lo… in blitFramebuffer() argument
|
/external/skia/legacy/src/images/ |
D | SkScaledBitmapSampler.h | 23 int srcY0() const { return fY0; } in srcY0() function
|
D | SkImageDecoder_libbmp.cpp | 142 srcRow += sampler.srcY0() * srcRowBytes; in onDecode()
|
D | SkImageDecoder_libpng.cpp | 391 base += sampler.srcY0() * rb; in onDecode() 399 skip_src_rows(png_ptr, srcRow, sampler.srcY0()); in onDecode() 412 sampler.srcY0() + 1; in onDecode() 770 base += sampler.srcY0() * rb; in onDecodeRegion() 780 skip_src_rows(png_ptr, srcRow, sampler.srcY0()); in onDecodeRegion()
|
D | SkImageDecoder_libjpeg.cpp | 422 if (!skip_src_rows(&cinfo, srcRow, sampler.srcY0())) { in onDecode() 716 if (!skip_src_rows_tile(cinfo, index->index, srcRow, sampler.srcY0())) { in onDecodeRegion()
|
/external/skia/src/images/ |
D | SkScaledBitmapSampler.h | 23 int srcY0() const { return fY0; } in srcY0() function
|
D | SkImageDecoder_libpng.cpp | 392 base += sampler.srcY0() * rb; in onDecode() 400 skip_src_rows(png_ptr, srcRow, sampler.srcY0()); in onDecode() 413 sampler.srcY0() + 1; in onDecode() 776 base += sampler.srcY0() * rb; in onDecodeRegion() 786 skip_src_rows(png_ptr, srcRow, sampler.srcY0()); in onDecodeRegion()
|
D | SkImageDecoder_libbmp.cpp | 146 srcRow += sampler.srcY0() * srcRowBytes; in onDecode()
|
D | SkImageDecoder_libjpeg.cpp | 456 if (!skip_src_rows(&cinfo, srcRow, sampler.srcY0())) { in onDecode() 754 if (!skip_src_rows_tile(cinfo, index->index, srcRow, sampler.srcY0())) { in onDecodeRegion()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | Extensions3D.h | 112 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | Extensions3DChromium.h | 48 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
|
/external/webkit/Source/ThirdParty/ANGLE/include/GLES2/ |
D | gl2ext.h | 807 GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint sr… 811 typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, G…
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | Context.h | 431 void blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
|
D | Context.cpp | 3278 void Context::blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blitFramebuffer() argument 3318 if (srcY0 < srcY1) in blitFramebuffer() 3322 sourceRect.top = srcY0; in blitFramebuffer() 3327 sourceRect.bottom = srcY0; in blitFramebuffer()
|
D | libGLESv2.cpp | 5666 void __stdcall glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dst… in glBlitFramebufferANGLE() argument 5672 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebufferANGLE() 5689 if (srcX1 - srcX0 != dstX1 - dstX0 || srcY1 - srcY0 != dstY1 - dstY0) in glBlitFramebufferANGLE() 5705 context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask); in glBlitFramebufferANGLE()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebGraphicsContext3D.h | 168 …virtual void blitFramebufferCHROMIUM(WGC3Dint srcX0, WGC3Dint srcY0, WGC3Dint srcX1, WGC3Dint srcY…
|
/external/skia/src/gpu/gl/ |
D | GrGLCreateNullInterface.cpp | 101 GrGLvoid GR_GL_FUNCTION_TYPE nullGLBlitFramebuffer(GrGLint srcX0, GrGLint srcY0, GrGLint srcX1, GrG… in nullGLBlitFramebuffer() argument
|
/external/skia/include/gpu/gl/ |
D | GrGLFunctions.h | 56 …typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLBlitFramebufferProc)(GrGLint srcX0, GrGLint srcY0, GrGL…
|
/external/skia/src/gpu/gl/debug/ |
D | GrGLCreateDebugInterface.cpp | 811 GrGLint srcY0, in debugGLBlitFramebuffer() argument
|