Home
last modified time | relevance | path

Searched refs:srcX1 (Results 1 – 25 of 65) sorted by relevance

123

/external/mesa3d/src/mesa/main/
Dblit.c67 int srcX1, int srcY1, in _mesa_regions_overlap() argument
71 if (MAX2(srcX0, srcX1) <= MIN2(dstX0, dstX1)) in _mesa_regions_overlap()
74 if (MAX2(dstX0, dstX1) <= MIN2(srcX0, srcX1)) in _mesa_regions_overlap()
184 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_blit_framebuffer() argument
452 || srcX1 != dstX1 || srcY1 != dstY1)) { in _mesa_blit_framebuffer()
470 if (abs(srcX1 - srcX0) != abs(dstX1 - dstX0) || in _mesa_blit_framebuffer()
487 srcX0, srcY0, srcX1, srcY1, in _mesa_blit_framebuffer()
530 (srcX1 - srcX0) == 0 || (srcY1 - srcY0) == 0 || in _mesa_blit_framebuffer()
537 srcX0, srcY0, srcX1, srcY1, in _mesa_blit_framebuffer()
550 _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_BlitFramebuffer() argument
[all …]
Dimage.c805 clip_right_or_top(GLint *srcX0, GLint *srcX1, in clip_right_or_top() argument
818 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; in clip_right_or_top()
819 *srcX1 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias); in clip_right_or_top()
828 bias = (*srcX0 < *srcX1) ? -0.5F : 0.5F; in clip_right_or_top()
829 *srcX0 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias); in clip_right_or_top()
838 clip_left_or_bottom(GLint *srcX0, GLint *srcX1, in clip_left_or_bottom() argument
851 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; in clip_left_or_bottom()
852 *srcX0 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias); in clip_left_or_bottom()
861 bias = (*srcX0 < *srcX1) ? -0.5F : 0.5F; in clip_left_or_bottom()
862 *srcX1 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias); in clip_left_or_bottom()
[all …]
Dblit.h33 int srcX1, int srcY1,
41 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
46 _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
52 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
Dimage.h135 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1,
/external/mesa3d/src/mesa/swrast/
Ds_blit.c112 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_nearest() argument
121 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_nearest()
126 const GLint srcXpos = MIN2(srcX0, srcX1); in blit_nearest()
131 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_nearest()
513 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_linear() argument
520 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_linear()
525 const GLint srcXpos = MIN2(srcX0, srcX1); in blit_linear()
530 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_linear()
738 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _swrast_BlitFramebuffer() argument
761 if (!_mesa_clip_blit(ctx, readFb, drawFb, &srcX0, &srcY0, &srcX1, &srcY1, in _swrast_BlitFramebuffer()
[all …]
Dswrast.h160 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
/external/mesa3d/src/gallium/auxiliary/util/
Du_blit.c315 int srcX1, int srcY1, in regions_overlap() argument
319 if (MAX2(srcX0, srcX1) <= MIN2(dstX0, dstX1)) in regions_overlap()
322 if (MAX2(dstX0, dstX1) <= MIN2(srcX0, srcX1)) in regions_overlap()
369 int srcX1, int srcY1, in util_blit_pixels() argument
379 const int srcW = abs(srcX1 - srcX0); in util_blit_pixels()
396 regions_overlap(srcX0, srcY0, srcX1, srcY1, in util_blit_pixels()
434 srcX0 < srcX1 && in util_blit_pixels()
438 (dstX1 - dstX0) == (srcX1 - srcX0) && in util_blit_pixels()
473 info.src.box.width = srcX1 - srcX0; in util_blit_pixels()
503 int srcX1, int srcY1, in util_blit_pixels_tex() argument
[all …]
Du_blit.h58 int srcX1, int srcY1,
70 int srcX1, int srcY1,
/external/mesa3d/src/mesa/drivers/common/
Dmeta_blit.c604 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blitframebuffer_texture() argument
618 const int srcW = abs(srcX1 - srcX0); in blitframebuffer_texture()
691 srcX1 = srcW; in blitframebuffer_texture()
763 s1 = srcX1 / (float) texImage->Width; in blitframebuffer_texture()
772 s1 = (float) srcX1; in blitframebuffer_texture()
953 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_meta_BlitFramebuffer() argument
963 GLint srcX0, srcY0, srcX1, srcY1; in _mesa_meta_BlitFramebuffer() member
966 srcX0, srcY0, srcX1, srcY1, in _mesa_meta_BlitFramebuffer()
983 &clip.srcX0, &clip.srcY0, &clip.srcX1, &clip.srcY1, in _mesa_meta_BlitFramebuffer()
1014 srcX0, srcY0, srcX1, srcY1, in _mesa_meta_BlitFramebuffer()
[all …]
Dmeta.h481 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
490 GLint srcX1, GLint srcY1,
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_blit.c51 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in st_BlitFramebuffer() argument
62 GLint srcX0, srcY0, srcX1, srcY1; in st_BlitFramebuffer() member
75 clip.srcX1 = srcX1; in st_BlitFramebuffer()
89 &clip.srcX0, &clip.srcY0, &clip.srcX1, &clip.srcY1, in st_BlitFramebuffer()
148 blit.src.box.width = srcX1 - srcX0; in st_BlitFramebuffer()
151 blit.src.box.x = srcX1; in st_BlitFramebuffer()
153 blit.src.box.width = srcX0 - srcX1; in st_BlitFramebuffer()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_fbo.c785 GLint srcX1, GLint srcY1, in intel_blit_framebuffer_with_blitter() argument
812 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter()
814 srcX1 >= srcX0 && in intel_blit_framebuffer_with_blitter()
816 srcX0 >= 0 && srcX1 <= readFb->Width && in intel_blit_framebuffer_with_blitter()
876 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument
890 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
897 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
909 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
916 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
935 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in gen4_blit_framebuffer() argument
[all …]
Dbrw_meta_util.c162 GLfloat *srcX1, GLfloat *srcY1, in brw_meta_mirror_clip_and_scissor() argument
171 fixup_mirroring(mirror_x, srcX0, srcX1); in brw_meta_mirror_clip_and_scissor()
188 if (!compute_pixels_clipped(*srcX0, *srcY0, *srcX1, *srcY1, in brw_meta_mirror_clip_and_scissor()
223 float scaleX = (float) (*srcX1 - *srcX0) / (*dstX1 - *dstX0); in brw_meta_mirror_clip_and_scissor()
234 srcX1, dstX1, dstX0, in brw_meta_mirror_clip_and_scissor()
Dbrw_blorp.c492 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1, in do_blorp_blit() argument
510 srcX0, srcY0, srcX1, srcY1, in do_blorp_blit()
522 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1, in try_blorp_blit() argument
535 &srcX0, &srcY0, &srcX1, &srcY1, in try_blorp_blit()
554 srcX0, srcY0, srcX1, srcY1, in try_blorp_blit()
577 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
587 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
658 int srcX1 = srcX0 + width; in brw_blorp_copytexsubimage() local
682 srcX0, srcY0, srcX1, srcY1, in brw_blorp_copytexsubimage()
709 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.c641 GLint srcX1, GLint srcY1, in intel_blit_framebuffer_with_blitter() argument
668 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter()
670 srcX1 >= srcX0 && in intel_blit_framebuffer_with_blitter()
672 srcX0 >= 0 && srcX1 <= readFb->Width && in intel_blit_framebuffer_with_blitter()
734 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument
740 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
748 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
58 blit.src.box.width = srcX1 - srcX0; 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 …litFramebuffer(readOffset.x()+srcX0, readOffset.y()+srcY0, readOffset.x()+srcX1, readOffset.y()+sr… in blitFramebuffer()
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTgles2Ext.h108 …typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLi…
/external/swiftshader/src/OpenGL/libGLESv2/
Dentry_points.cpp196 GL_APICALL void BlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, …
197 GL_APICALL void BlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX…
1148 GL_APICALL void GL_APIENTRY glBlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,… in glBlitFramebufferNV() argument
1150 …return es2::BlitFramebufferNV(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter… in glBlitFramebufferNV()
1153 GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint src… in glBlitFramebufferANGLE() argument
1156 …return es2::BlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, fil… in glBlitFramebufferANGLE()
DlibGLESv2.hpp217 …void (*glBlitFramebufferNV)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint…
218 …void (*glBlitFramebufferANGLE)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GL…
DlibGLESv2.cpp6176 static void BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint … in BlitFramebuffer() argument
6181 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter); in BlitFramebuffer()
6206 …context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, false, allo… in BlitFramebuffer()
6210 void BlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0… in BlitFramebufferNV() argument
6212 BlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter, true); in BlitFramebufferNV()
6215 void BlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint ds… in BlitFramebufferANGLE() argument
6218 if(srcX1 - srcX0 != dstX1 - dstX0 || srcY1 - srcY0 != dstY1 - dstY0) in BlitFramebufferANGLE()
6224 BlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter, false); in BlitFramebufferANGLE()
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES2/
Dgl2ext.h1239 GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint sr…
1241 typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, G…
1774 GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1…
1776 typedef void (GL_APIENTRYP PFNBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint …

123