Home
last modified time | relevance | path

Searched refs:srcY1 (Results 1 – 25 of 89) sorted by relevance

1234

/external/mesa3d/src/mesa/main/
Dblit.c67 int srcX1, int srcY1, in _mesa_regions_overlap() argument
77 if (MAX2(srcY0, srcY1) <= MIN2(dstY0, dstY1)) in _mesa_regions_overlap()
80 if (MAX2(dstY0, dstY1) <= MIN2(srcY0, srcY1)) in _mesa_regions_overlap()
346 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_framebuffer() argument
432 || srcX1 != dstX1 || srcY1 != dstY1)) { in blit_framebuffer()
451 abs(srcY1 - srcY0) != abs(dstY1 - dstY0)) { in blit_framebuffer()
527 srcX0, srcY0, srcX1, srcY1, in blit_framebuffer()
570 (srcX1 - srcX0) == 0 || (srcY1 - srcY0) == 0 || in blit_framebuffer()
577 srcX0, srcY0, srcX1, srcY1, in blit_framebuffer()
587 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_framebuffer_err() argument
[all …]
Dblit.h33 int srcX1, int srcY1,
39 GLint srcY1, GLint dstX0, GLint dstY0,
44 _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
52 GLint srcX1, GLint srcY1,
59 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
Dimage.c884 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1, in _mesa_clip_blit() argument
927 if (*srcY0 == *srcY1) in _mesa_clip_blit()
929 if (*srcY0 <= srcYmin && *srcY1 <= srcYmin) in _mesa_clip_blit()
931 if (*srcY0 >= srcYmax && *srcY1 >= srcYmax) in _mesa_clip_blit()
938 clip_right_or_top(srcY0, srcY1, dstY0, dstY1, dstYmax); in _mesa_clip_blit()
940 clip_left_or_bottom(srcY0, srcY1, dstY0, dstY1, dstYmin); in _mesa_clip_blit()
946 clip_right_or_top(dstY0, dstY1, srcY0, srcY1, srcYmax); in _mesa_clip_blit()
948 clip_left_or_bottom(dstY0, dstY1, srcY0, srcY1, srcYmin); in _mesa_clip_blit()
974 assert(*srcY1 >= srcYmin); in _mesa_clip_blit()
975 assert(*srcY1 <= srcYmax); in _mesa_clip_blit()
Dimage.h134 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1,
/external/mesa3d/src/mesa/drivers/common/
Dmeta_blit.c92 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blitframebuffer_texture() argument
107 const int srcH = abs(srcY1 - srcY0); in blitframebuffer_texture()
136 srcY0 = rb->Height - srcY1; in blitframebuffer_texture()
137 srcY1 = rb->Height - temp; in blitframebuffer_texture()
174 srcY1 = srcH; in blitframebuffer_texture()
244 t1 = srcY1 / (float) texImage->Height; in blitframebuffer_texture()
251 t1 = (float) srcY1; in blitframebuffer_texture()
418 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_meta_BlitFramebuffer() argument
428 GLint srcX0, srcY0, srcX1, srcY1; in _mesa_meta_BlitFramebuffer() member
431 srcX0, srcY0, srcX1, srcY1, in _mesa_meta_BlitFramebuffer()
[all …]
Dmeta.h409 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
418 GLint srcX1, GLint srcY1,
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_blit.c53 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in st_BlitFramebuffer() argument
64 GLint srcX0, srcY0, srcX1, srcY1; in st_BlitFramebuffer() member
78 clip.srcY1 = srcY1; in st_BlitFramebuffer()
91 &clip.srcX0, &clip.srcY0, &clip.srcX1, &clip.srcY1, in st_BlitFramebuffer()
125 srcY1 = readFB->Height - srcY1; in st_BlitFramebuffer()
128 if (srcY0 > srcY1 && dstY0 > dstY1) { in st_BlitFramebuffer()
135 srcY0 = srcY1; in st_BlitFramebuffer()
136 srcY1 = tmp; in st_BlitFramebuffer()
161 blit.src.box.height = srcY1 - srcY0; in st_BlitFramebuffer()
164 blit.src.box.y = srcY1; in st_BlitFramebuffer()
[all …]
Dst_cb_texture.c2514 GLint srcY0, srcY1; in st_CopyTexSubImage() local
2560 srcY1 = strb->Base.Height - srcY - height; in st_CopyTexSubImage()
2561 srcY0 = srcY1 + height; in st_CopyTexSubImage()
2565 srcY1 = srcY0 + height; in st_CopyTexSubImage()
2579 blit.src.box.height = srcY1 - srcY0; in st_CopyTexSubImage()
/external/mesa3d/src/mesa/swrast/
Ds_blit.c112 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_nearest() argument
123 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_nearest()
127 const GLint srcYpos = MIN2(srcY0, srcY1); in blit_nearest()
132 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_nearest()
515 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_linear() argument
524 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_linear()
528 const GLint srcYpos = MIN2(srcY0, srcY1); in blit_linear()
533 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_linear()
649 srcY1 = srcYpos + srcRow1; in blit_linear()
652 if (srcY0 == srcBufferY0 && srcY1 == srcBufferY1) { in blit_linear()
[all …]
Dswrast.h160 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_meta_util.c162 GLfloat *srcX1, GLfloat *srcY1, in brw_meta_mirror_clip_and_scissor() argument
173 fixup_mirroring(mirror_y, srcY0, srcY1); in brw_meta_mirror_clip_and_scissor()
188 if (!compute_pixels_clipped(*srcX0, *srcY0, *srcX1, *srcY1, in brw_meta_mirror_clip_and_scissor()
223 if (*srcX0 == *srcX1 || *srcY0 == *srcY1 in brw_meta_mirror_clip_and_scissor()
228 float scaleY = (float) (*srcY1 - *srcY0) / (*dstY1 - *dstY0); in brw_meta_mirror_clip_and_scissor()
250 srcY1, dstY1, dstY0, in brw_meta_mirror_clip_and_scissor()
259 *srcY0 = read_fb->Height - *srcY1; in brw_meta_mirror_clip_and_scissor()
260 *srcY1 = tmp; in brw_meta_mirror_clip_and_scissor()
273 return *srcX0 == *srcX1 || *srcY0 == *srcY1 in brw_meta_mirror_clip_and_scissor()
Dintel_fbo.c803 GLint srcX1, GLint srcY1, in intel_blit_framebuffer_with_blitter() argument
831 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_with_blitter()
833 srcY1 >= srcY0 && in intel_blit_framebuffer_with_blitter()
835 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_with_blitter()
895 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument
918 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
926 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
936 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
947 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
Dbrw_blorp.c583 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1, in do_blorp_blit() argument
601 srcX0, srcY0, srcX1, srcY1, in do_blorp_blit()
613 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1, in try_blorp_blit() argument
627 &srcX0, &srcY0, &srcX1, &srcY1, in try_blorp_blit()
646 srcX0, srcY0, srcX1, srcY1, in try_blorp_blit()
668 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
684 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
747 int srcY1 = srcY0 + height; in brw_blorp_copytexsubimage() local
757 apply_y_flip(&srcY0, &srcY1, src_rb->Height); in brw_blorp_copytexsubimage()
768 srcX0, srcY0, srcX1, srcY1, in brw_blorp_copytexsubimage()
[all …]
Dbrw_meta_util.h40 GLfloat *srcX1, GLfloat *srcY1,
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_fbo.c646 GLint srcX1, GLint srcY1, in intel_blit_framebuffer_with_blitter() argument
674 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_with_blitter()
676 srcY1 >= srcY0 && in intel_blit_framebuffer_with_blitter()
678 srcY0 >= 0 && srcY1 <= readFb->Height && in intel_blit_framebuffer_with_blitter()
739 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument
745 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
753 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
/external/mesa3d/src/gallium/auxiliary/postprocess/
Dpp_private.h102 int srcX1, int srcY1,
Dpp_run.c42 int srcX1, int srcY1, in pp_blit() argument
59 blit.src.box.height = srcY1 - srcY0; in pp_blit()
/external/deqp/framework/opengl/simplereference/
DsglrContextWrapper.cpp359 void ContextWrapper::glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int … in glBlitFramebuffer() argument
361 m_curCtx->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebuffer()
DsglrGLContext.cpp600 void GLContext::blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, … in blitFramebuffer() argument
607 << srcX0 << ", " << srcY0 << ", " << srcX1 << ", " << srcY1 << ", " in blitFramebuffer()
613 …Framebuffer(readOffset.x()+srcX0, readOffset.y()+srcY0, readOffset.x()+srcX1, readOffset.y()+srcY1, in blitFramebuffer()
DsglrGLContext.hpp149 …virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int ds…
DsglrContext.hpp137 …virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0,…
/external/angle/extensions/
DANGLE_framebuffer_blit.txt57 void BlitFramebufferANGLE(int srcX0, int srcY0, int srcX1, int srcY1,
124 BlitFramebufferANGLE(int srcX0, int srcY0, int srcX1, int srcY1,
133 srcY0) and (srcX1, srcY1), to the destination rectangle, bound by
/external/angle/src/libANGLE/
DvalidationES2.cpp47 GLint srcY1, in IsPartialBlit() argument
57 dstY1 != writeSize.height || srcX1 != readSize.width || srcY1 != readSize.height) in IsPartialBlit()
2430 GLint srcY1, in ValidateBlitFramebufferANGLE() argument
2444 if (srcX1 - srcX0 != dstX1 - dstX0 || srcY1 - srcY0 != dstY1 - dstY0) in ValidateBlitFramebufferANGLE()
2516 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1)) in ValidateBlitFramebufferANGLE()
2538 if (IsPartialBlit(context, readBuffer, drawBuffer, srcX0, srcY0, srcX1, srcY1, in ValidateBlitFramebufferANGLE()
2557 return ValidateBlitFramebufferParameters(context, entryPoint, srcX0, srcY0, srcX1, srcY1, dstX0, in ValidateBlitFramebufferANGLE()
2566 GLint srcY1, in ValidateBlitFramebufferNV() argument
2580 return ValidateBlitFramebufferParameters(context, entryPoint, srcX0, srcY0, srcX1, srcY1, dstX0, in ValidateBlitFramebufferNV()
DContext_gles_3_0_autogen.h22 void blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, \
/external/angle/include/GLX/
Dglxext.h245 …AMDPROC) (GLXContext dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLin…
255 …ufferAMD (GLXContext dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLin…

1234