Home
last modified time | relevance | path

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

123

/external/mesa3d/src/mesa/main/
Dblit.c69 int dstX1, int dstY1) 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()
347 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blit_framebuffer() argument
432 || srcX1 != dstX1 || srcY1 != dstY1)) { in blit_framebuffer()
450 if (abs(srcX1 - srcX0) != abs(dstX1 - dstX0) || in blit_framebuffer()
528 dstX0, dstY0, dstX1, dstY1, in blit_framebuffer()
571 (dstX1 - dstX0) == 0 || (dstY1 - dstY0) == 0) { in blit_framebuffer()
578 dstX0, dstY0, dstX1, dstY1, in blit_framebuffer()
588 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blit_framebuffer_err() argument
[all …]
Dimage.c806 GLint *dstX0, GLint *dstX1, in clip_right_or_top() argument
811 if (*dstX1 > maxValue) { in clip_right_or_top()
814 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_right_or_top()
817 *dstX1 = maxValue; in clip_right_or_top()
823 assert(*dstX1 < maxValue); /* X1 should be inside right edge */ in clip_right_or_top()
824 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_right_or_top()
839 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom() argument
846 assert(*dstX1 > minValue); /* X1 should be inside left edge */ in clip_left_or_bottom()
847 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom()
854 else if (*dstX1 < minValue) { in clip_left_or_bottom()
[all …]
Dblit.h35 int dstX1, int dstY1);
40 GLint dstX1, GLint dstY1,
45 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
54 GLint dstX1, GLint dstY1,
60 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
Dimage.h135 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_blit.c52 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in st_BlitFramebuffer() argument
63 GLint dstX0, dstY0, dstX1, dstY1; in st_BlitFramebuffer() member
79 clip.dstX1 = dstX1; in st_BlitFramebuffer()
90 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in st_BlitFramebuffer()
97 (dstX1 != clip.dstX1) || in st_BlitFramebuffer()
109 blit.scissor.minx = MIN2(clip.dstX0, clip.dstX1); in st_BlitFramebuffer()
111 blit.scissor.maxx = MAX2(clip.dstX0, clip.dstX1); in st_BlitFramebuffer()
144 if (dstX0 < dstX1) { in st_BlitFramebuffer()
147 blit.dst.box.width = dstX1 - dstX0; in st_BlitFramebuffer()
150 blit.dst.box.x = dstX1; in st_BlitFramebuffer()
[all …]
/external/mesa3d/src/mesa/drivers/common/
Dmeta_blit.c605 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blitframebuffer_texture() argument
614 const GLint dstX = MIN2(dstX0, dstX1); in blitframebuffer_texture()
616 const GLint dstW = abs(dstX1 - dstX0); in blitframebuffer_texture()
950 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_meta_BlitFramebuffer() argument
953 const GLint dstW = abs(dstX1 - dstX0); in _mesa_meta_BlitFramebuffer()
955 const GLint dstFlipX = (dstX1 - dstX0) / dstW; in _mesa_meta_BlitFramebuffer()
960 GLint dstX0, dstY0, dstX1, dstY1; in _mesa_meta_BlitFramebuffer() member
963 dstX0, dstY0, dstX1, dstY1 in _mesa_meta_BlitFramebuffer()
980 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in _mesa_meta_BlitFramebuffer()
999 clip.dstX1 != dstX1 || clip.dstY1 != dstY1) { in _mesa_meta_BlitFramebuffer()
[all …]
Dmeta.h480 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
490 GLint dstX1, GLint dstY1,
/external/mesa3d/src/mesa/swrast/
Ds_blit.c113 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blit_nearest() argument
122 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_nearest()
128 const GLint dstXpos = MIN2(dstX0, dstX1); in blit_nearest()
131 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_nearest()
514 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1) in blit_linear() argument
521 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_linear()
527 const GLint dstXpos = MIN2(dstX0, dstX1); in blit_linear()
530 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_linear()
739 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _swrast_BlitFramebuffer() argument
762 &dstX0, &dstY0, &dstX1, &dstY1)) { in _swrast_BlitFramebuffer()
[all …]
Dswrast.h161 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_meta_util.c164 GLfloat *dstX1, GLfloat *dstY1, in brw_meta_mirror_clip_and_scissor() argument
172 fixup_mirroring(mirror_x, dstX0, dstX1); in brw_meta_mirror_clip_and_scissor()
193 if (!compute_pixels_clipped(*dstX0, *dstY0, *dstX1, *dstY1, in brw_meta_mirror_clip_and_scissor()
223 float scaleX = (float) (*srcX1 - *srcX0) / (*dstX1 - *dstX0); in brw_meta_mirror_clip_and_scissor()
228 srcX0, dstX0, dstX1, in brw_meta_mirror_clip_and_scissor()
234 srcX1, dstX1, dstX0, in brw_meta_mirror_clip_and_scissor()
Dintel_fbo.c780 GLint dstX1, GLint dstY1, in intel_blit_framebuffer_with_blitter() argument
805 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter()
811 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_with_blitter()
852 dstX1 - dstX0, dstY1 - dstY0, GL_COPY)) { in intel_blit_framebuffer_with_blitter()
870 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument
893 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
901 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
908 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
920 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
927 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
Dbrw_blorp.c496 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1, in do_blorp_blit() argument
514 dstX0, dstY0, dstX1, dstY1, in do_blorp_blit()
526 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1, in try_blorp_blit() argument
540 &dstX0, &dstY0, &dstX1, &dstY1, in try_blorp_blit()
559 dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
588 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
604 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit()
687 int dstX1 = dstX0 + width; in brw_blorp_copytexsubimage() local
707 dstX0, dstY0, dstX1, dstY1, in brw_blorp_copytexsubimage()
734 dstX0, dstY0, dstX1, dstY1, in brw_blorp_copytexsubimage()
[all …]
Dbrw_meta_util.h42 GLfloat *dstX1, GLfloat *dstY1,
/external/mesa3d/src/gallium/auxiliary/util/
Du_blit.c317 int dstX1, int dstY1) 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()
373 int dstX1, int dstY1, in util_blit_pixels() argument
397 dstX0, dstY0, dstX1, dstY1); in util_blit_pixels()
435 dstX0 < dstX1 && in util_blit_pixels()
438 (dstX1 - dstX0) == (srcX1 - srcX0) && in util_blit_pixels()
462 info.dst.box.width = dstX1 - dstX0; in util_blit_pixels()
507 int dstX1, int dstY1, in util_blit_pixels_tex() argument
618 (float) dstX1 / dst->width * 2.0f - 1.0f, in util_blit_pixels_tex()
Du_blit.h62 int dstX1, int dstY1,
74 int dstX1, int dstY1,
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_fbo.c643 GLint dstX1, GLint dstY1, in intel_blit_framebuffer_with_blitter() argument
668 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter()
674 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_with_blitter()
717 dstX1 - dstX0, dstY1 - dstY0, GL_COPY)) { in intel_blit_framebuffer_with_blitter()
735 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument
741 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
749 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
/external/mesa3d/src/gallium/auxiliary/postprocess/
Dpp_private.h106 int dstX1, int dstY1);
Dpp_run.c46 int dstX1, int dstY1) in pp_blit() argument
68 blit.dst.box.width = dstX1 - dstX0; in pp_blit()
/external/deqp/framework/opengl/simplereference/
DsglrContextWrapper.cpp359 …er (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint… in glBlitFramebuffer() argument
361 m_curCtx->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebuffer()
DsglrGLContext.cpp600 …er (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint… in blitFramebuffer() argument
608 << dstX0 << ", " << dstY0 << ", " << dstX1 << ", " << dstY1 << ", " in blitFramebuffer()
614 drawOffset.x()+dstX0, drawOffset.y()+dstY0, drawOffset.x()+dstX1, drawOffset.y()+dstY1, in blitFramebuffer()
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTgles2Ext.h108 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
/external/swiftshader/src/OpenGL/libGLESv2/
Dentry_points.h197 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
198 …t srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
248 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
Dentry_points.cpp943 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi… in glBlitFramebufferNV() argument
945 return gl::BlitFramebufferNV(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebufferNV()
948 …t srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in glBlitFramebufferANGLE() argument
951 …return gl::BlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filt… in glBlitFramebufferANGLE()
1115 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi… in glBlitFramebuffer() argument
1117 return gl::BlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebuffer()
DlibGLESv2.hpp217 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
218 …t srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES2/
Dgl2ext.h1239 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
1241 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
1774 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
1776 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…

123