/external/mesa3d/src/mesa/main/ |
D | blit.c | 69 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 …]
|
D | image.c | 806 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 …]
|
D | blit.h | 35 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,
|
D | image.h | 135 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_blit.c | 52 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/ |
D | meta_blit.c | 605 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 …]
|
D | meta.h | 480 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 490 GLint dstX1, GLint dstY1,
|
/external/mesa3d/src/mesa/swrast/ |
D | s_blit.c | 113 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 …]
|
D | swrast.h | 161 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_meta_util.c | 164 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()
|
D | intel_fbo.c | 780 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()
|
D | brw_blorp.c | 496 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 …]
|
D | brw_meta_util.h | 42 GLfloat *dstX1, GLfloat *dstY1,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_blit.c | 317 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()
|
D | u_blit.h | 62 int dstX1, int dstY1, 74 int dstX1, int dstY1,
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_fbo.c | 643 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/ |
D | pp_private.h | 106 int dstX1, int dstY1);
|
D | pp_run.c | 46 int dstX1, int dstY1) in pp_blit() argument 68 blit.dst.box.width = dstX1 - dstX0; in pp_blit()
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrContextWrapper.cpp | 359 …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()
|
D | sglrGLContext.cpp | 600 …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/ |
D | PVRTgles2Ext.h | 108 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi…
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | entry_points.h | 197 …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…
|
D | entry_points.cpp | 943 …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()
|
D | libGLESv2.hpp | 217 …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/ |
D | gl2ext.h | 1239 …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…
|