/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
D | st_cb_blit.c | 144 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in st_BlitFramebuffer() argument 159 if (!_mesa_clip_blit(ctx, &srcX0, &srcY0, &srcX1, &srcY1, in st_BlitFramebuffer() 172 srcY0 = readFB->Height - srcY0; in st_BlitFramebuffer() 199 info.src.y0 = srcY0; in st_BlitFramebuffer() 205 info.src.y1 = srcY0; in st_BlitFramebuffer() 213 if (srcY0 > srcY1 && dstY0 > dstY1) { in st_BlitFramebuffer() 219 tmp = srcY0; in st_BlitFramebuffer() 220 srcY0 = srcY1; in st_BlitFramebuffer() 242 srcX0, srcY0, srcX1, srcY1, in st_BlitFramebuffer() 257 srcX0, srcY0, srcX1, srcY1, in st_BlitFramebuffer() [all …]
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_blit.c | 144 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in st_BlitFramebuffer() argument 159 if (!_mesa_clip_blit(ctx, &srcX0, &srcY0, &srcX1, &srcY1, in st_BlitFramebuffer() 172 srcY0 = readFB->Height - srcY0; in st_BlitFramebuffer() 199 info.src.y0 = srcY0; in st_BlitFramebuffer() 205 info.src.y1 = srcY0; in st_BlitFramebuffer() 213 if (srcY0 > srcY1 && dstY0 > dstY1) { in st_BlitFramebuffer() 219 tmp = srcY0; in st_BlitFramebuffer() 220 srcY0 = srcY1; in st_BlitFramebuffer() 242 srcX0, srcY0, srcX1, srcY1, in st_BlitFramebuffer() 257 srcX0, srcY0, srcX1, srcY1, in st_BlitFramebuffer() [all …]
|
/external/mesa3d/src/mesa/swrast/ |
D | s_blit.c | 109 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_nearest() argument 117 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_nearest() 121 const GLint srcYpos = MIN2(srcY0, srcY1); in blit_nearest() 126 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_nearest() 233 if (srcY0 < dstY0) { in blit_nearest() 489 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_linear() argument 497 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_linear() 502 const GLint srcYpos = MIN2(srcY0, srcY1); in blit_linear() 507 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_linear() 628 srcY0 = srcYpos + srcRow0; in blit_linear() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
D | s_blit.c | 109 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_nearest() argument 117 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_nearest() 121 const GLint srcYpos = MIN2(srcY0, srcY1); in blit_nearest() 126 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_nearest() 233 if (srcY0 < dstY0) { in blit_nearest() 489 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_linear() argument 497 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_linear() 502 const GLint srcYpos = MIN2(srcY0, srcY1); in blit_linear() 507 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_linear() 628 srcY0 = srcYpos + srcRow0; in blit_linear() [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_blit.h | 62 int srcX0, int srcY0, 74 int srcX0, int srcY0,
|
D | u_blit.c | 374 regions_overlap(int srcX0, int srcY0, in regions_overlap() argument 385 if (MAX2(srcY0, srcY1) < MIN2(dstY0, dstY1)) in regions_overlap() 388 if (MAX2(dstY0, dstY1) < MIN2(srcY0, srcY1)) in regions_overlap() 428 int srcX0, int srcY0, in util_blit_pixels() argument 445 const int srcH = abs(srcY1 - srcY0); in util_blit_pixels() 463 regions_overlap(srcX0, srcY0, srcX1, srcY1, in util_blit_pixels() 490 srcY0 < srcY1 && in util_blit_pixels() 493 (dstY1 - dstY0) == (srcY1 - srcY0) && in util_blit_pixels() 497 src_box.y = srcY0; in util_blit_pixels() 548 const int srcTop = MIN2(srcY0, srcY1); in util_blit_pixels() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_blit.h | 62 int srcX0, int srcY0, 74 int srcX0, int srcY0,
|
D | u_blit.c | 374 regions_overlap(int srcX0, int srcY0, in regions_overlap() argument 385 if (MAX2(srcY0, srcY1) < MIN2(dstY0, dstY1)) in regions_overlap() 388 if (MAX2(dstY0, dstY1) < MIN2(srcY0, srcY1)) in regions_overlap() 428 int srcX0, int srcY0, in util_blit_pixels() argument 445 const int srcH = abs(srcY1 - srcY0); in util_blit_pixels() 463 regions_overlap(srcX0, srcY0, srcX1, srcY1, in util_blit_pixels() 490 srcY0 < srcY1 && in util_blit_pixels() 493 (dstY1 - dstY0) == (srcY1 - srcY0) && in util_blit_pixels() 497 src_box.y = srcY0; in util_blit_pixels() 548 const int srcTop = MIN2(srcY0, srcY1); in util_blit_pixels() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | image.c | 718 const GLint srcX0 = *srcX, srcY0 = *srcY; in _mesa_clip_copytexsubimage() local 723 *destY = *destY + *srcY - srcY0; in _mesa_clip_copytexsubimage() 856 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1, in _mesa_clip_blit() argument 899 if (*srcY0 == *srcY1) in _mesa_clip_blit() 901 if (*srcY0 <= srcYmin && *srcY1 <= srcYmin) in _mesa_clip_blit() 903 if (*srcY0 >= srcYmax && *srcY1 >= srcYmax) in _mesa_clip_blit() 910 clip_right_or_top(srcY0, srcY1, dstY0, dstY1, dstYmax); in _mesa_clip_blit() 912 clip_left_or_bottom(srcY0, srcY1, dstY0, dstY1, dstYmin); in _mesa_clip_blit() 918 clip_right_or_top(dstY0, dstY1, srcY0, srcY1, srcYmax); in _mesa_clip_blit() 920 clip_left_or_bottom(dstY0, dstY1, srcY0, srcY1, srcYmin); in _mesa_clip_blit() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | image.c | 718 const GLint srcX0 = *srcX, srcY0 = *srcY; in _mesa_clip_copytexsubimage() local 723 *destY = *destY + *srcY - srcY0; in _mesa_clip_copytexsubimage() 856 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1, in _mesa_clip_blit() argument 899 if (*srcY0 == *srcY1) in _mesa_clip_blit() 901 if (*srcY0 <= srcYmin && *srcY1 <= srcYmin) in _mesa_clip_blit() 903 if (*srcY0 >= srcYmax && *srcY1 >= srcYmax) in _mesa_clip_blit() 910 clip_right_or_top(srcY0, srcY1, dstY0, dstY1, dstYmax); in _mesa_clip_blit() 912 clip_left_or_bottom(srcY0, srcY1, dstY0, dstY1, dstYmin); in _mesa_clip_blit() 918 clip_right_or_top(dstY0, dstY1, srcY0, srcY1, srcYmax); in _mesa_clip_blit() 920 clip_left_or_bottom(dstY0, dstY1, srcY0, srcY1, srcYmin); in _mesa_clip_blit() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_fbo.c | 806 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 827 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_copy_tex_sub_image() 829 srcY1 >= srcY0 && in intel_blit_framebuffer_copy_tex_sub_image() 831 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_copy_tex_sub_image() 846 srcX0, srcY0, in intel_blit_framebuffer_copy_tex_sub_image() 848 srcY1 - srcY0)) in intel_blit_framebuffer_copy_tex_sub_image() 858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument 864 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 872 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 880 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | intel_fbo.c | 806 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 827 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_copy_tex_sub_image() 829 srcY1 >= srcY0 && in intel_blit_framebuffer_copy_tex_sub_image() 831 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_copy_tex_sub_image() 846 srcX0, srcY0, in intel_blit_framebuffer_copy_tex_sub_image() 848 srcY1 - srcY0)) in intel_blit_framebuffer_copy_tex_sub_image() 858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument 864 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 872 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 880 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
|
D | brw_blorp_blit.cpp | 148 GLint srcX0, GLint srcY0, in do_blorp_blit() argument 166 srcX0, srcY0, dstX0, dstY0, dstX1, dstY1, in do_blorp_blit() 193 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in try_blorp_blit() argument 211 fixup_mirroring(mirror_y, srcY0, srcY1); in try_blorp_blit() 216 if (srcY1 - srcY0 != dstY1 - dstY0) return false; in try_blorp_blit() 222 clip_or_scissor(mirror_y, srcY0, srcY1, dstY0, dstY1, in try_blorp_blit() 231 clip_or_scissor(mirror_y, dstY0, dstY1, srcY0, srcY1, in try_blorp_blit() 241 GLint tmp = read_fb->Height - srcY0; in try_blorp_blit() 242 srcY0 = read_fb->Height - srcY1; in try_blorp_blit() 266 do_blorp_blit(intel, buffer_bit, src_irb, dst_irb, srcX0, srcY0, in try_blorp_blit() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
D | intel_fbo.c | 806 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 827 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_copy_tex_sub_image() 829 srcY1 >= srcY0 && in intel_blit_framebuffer_copy_tex_sub_image() 831 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_copy_tex_sub_image() 846 srcX0, srcY0, in intel_blit_framebuffer_copy_tex_sub_image() 848 srcY1 - srcY0)) in intel_blit_framebuffer_copy_tex_sub_image() 858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument 864 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 872 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 880 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
D | intel_fbo.c | 806 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 827 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_copy_tex_sub_image() 829 srcY1 >= srcY0 && in intel_blit_framebuffer_copy_tex_sub_image() 831 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_copy_tex_sub_image() 846 srcX0, srcY0, in intel_blit_framebuffer_copy_tex_sub_image() 848 srcY1 - srcY0)) in intel_blit_framebuffer_copy_tex_sub_image() 858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument 864 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 872 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 880 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_fbo.c | 806 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 827 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_copy_tex_sub_image() 829 srcY1 >= srcY0 && in intel_blit_framebuffer_copy_tex_sub_image() 831 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_copy_tex_sub_image() 846 srcX0, srcY0, in intel_blit_framebuffer_copy_tex_sub_image() 848 srcY1 - srcY0)) in intel_blit_framebuffer_copy_tex_sub_image() 858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument 864 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 872 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 880 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_fbo.c | 806 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 827 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_copy_tex_sub_image() 829 srcY1 >= srcY0 && in intel_blit_framebuffer_copy_tex_sub_image() 831 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_copy_tex_sub_image() 846 srcX0, srcY0, in intel_blit_framebuffer_copy_tex_sub_image() 848 srcY1 - srcY0)) in intel_blit_framebuffer_copy_tex_sub_image() 858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument 864 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 872 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer() 880 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
|
D | brw_blorp_blit.cpp | 148 GLint srcX0, GLint srcY0, in do_blorp_blit() argument 166 srcX0, srcY0, dstX0, dstY0, dstX1, dstY1, in do_blorp_blit() 193 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in try_blorp_blit() argument 211 fixup_mirroring(mirror_y, srcY0, srcY1); in try_blorp_blit() 216 if (srcY1 - srcY0 != dstY1 - dstY0) return false; in try_blorp_blit() 222 clip_or_scissor(mirror_y, srcY0, srcY1, dstY0, dstY1, in try_blorp_blit() 231 clip_or_scissor(mirror_y, dstY0, dstY1, srcY0, srcY1, in try_blorp_blit() 241 GLint tmp = read_fb->Height - srcY0; in try_blorp_blit() 242 srcY0 = read_fb->Height - srcY1; in try_blorp_blit() 266 do_blorp_blit(intel, buffer_bit, src_irb, dst_irb, srcX0, srcY0, in try_blorp_blit() [all …]
|
/external/chromium_org/gpu/GLES2/ |
D | gl2extchromium.h | 246 GL_APICALL void GL_APIENTRY glBlitFramebufferCHROMIUM (GLint srcX0, GLint srcY0, GLint srcX1, GLint… 249 typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERCHROMIUMPROC) (GLint srcX0, GLint srcY0, GLint srcX1… 457 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, 461 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
|
/external/chromium_org/third_party/skia/src/images/ |
D | SkScaledBitmapSampler.h | 24 int srcY0() const { return fY0; } in srcY0() function
|
/external/skia/src/images/ |
D | SkScaledBitmapSampler.h | 24 int srcY0() const { return fY0; } in srcY0() function
|
D | SkImageDecoder_libbmp.cpp | 157 srcRow += sampler.srcY0() * srcRowBytes; in onDecode()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | Extensions3D.cpp | 66 void Extensions3D::blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long… in blitFramebuffer() argument 68 …m_context->webContext()->blitFramebufferCHROMIUM(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, … in blitFramebuffer()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.h | 78 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/ |
D | meta.h | 78 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
|