Home
last modified time | relevance | path

Searched refs:srcY0 (Results 1 – 24 of 24) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DExtensions3DChromium.cpp70 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()
DGraphicsContext3DInternal.h271 …void blitFramebufferCHROMIUM(GC3Dint srcX0, GC3Dint srcY0, GC3Dint srcX1, GC3Dint srcY1, GC3Dint d…
/external/webkit/Source/WebCore/platform/graphics/opengl/
DExtensions3DOpenGL.cpp137 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()
DExtensions3DOpenGL.h46 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
/external/webkit/Source/WebCore/platform/graphics/qt/
DExtensions3DQt.h42 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
DExtensions3DQt.cpp65 void Extensions3DQt::blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, lo… in blitFramebuffer() argument
/external/skia/legacy/src/images/
DSkScaledBitmapSampler.h23 int srcY0() const { return fY0; } in srcY0() function
DSkImageDecoder_libbmp.cpp142 srcRow += sampler.srcY0() * srcRowBytes; in onDecode()
DSkImageDecoder_libpng.cpp391 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()
DSkImageDecoder_libjpeg.cpp422 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/
DSkScaledBitmapSampler.h23 int srcY0() const { return fY0; } in srcY0() function
DSkImageDecoder_libpng.cpp392 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()
DSkImageDecoder_libbmp.cpp146 srcRow += sampler.srcY0() * srcRowBytes; in onDecode()
DSkImageDecoder_libjpeg.cpp456 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/
DExtensions3D.h112 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
/external/webkit/Source/WebCore/platform/graphics/chromium/
DExtensions3DChromium.h48 …virtual void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY…
/external/webkit/Source/ThirdParty/ANGLE/include/GLES2/
Dgl2ext.h807 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/
DContext.h431 void blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
DContext.cpp3278 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()
DlibGLESv2.cpp5666 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/
DWebGraphicsContext3D.h168 …virtual void blitFramebufferCHROMIUM(WGC3Dint srcX0, WGC3Dint srcY0, WGC3Dint srcX1, WGC3Dint srcY…
/external/skia/src/gpu/gl/
DGrGLCreateNullInterface.cpp101 GrGLvoid GR_GL_FUNCTION_TYPE nullGLBlitFramebuffer(GrGLint srcX0, GrGLint srcY0, GrGLint srcX1, GrG… in nullGLBlitFramebuffer() argument
/external/skia/include/gpu/gl/
DGrGLFunctions.h56 …typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLBlitFramebufferProc)(GrGLint srcX0, GrGLint srcY0, GrGL…
/external/skia/src/gpu/gl/debug/
DGrGLCreateDebugInterface.cpp811 GrGLint srcY0, in debugGLBlitFramebuffer() argument