/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() 185 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 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() 488 dstX0, dstY0, dstX1, dstY1, in _mesa_blit_framebuffer() 531 (dstX1 - dstX0) == 0 || (dstY1 - dstY0) == 0) { in _mesa_blit_framebuffer() 538 dstX0, dstY0, dstX1, dstY1, in _mesa_blit_framebuffer() 551 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_BlitFramebuffer() 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); 42 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 47 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 53 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
D | image.h | 136 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() 954 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_meta_BlitFramebuffer() argument 957 const GLint dstW = abs(dstX1 - dstX0); in _mesa_meta_BlitFramebuffer() 959 const GLint dstFlipX = (dstX1 - dstX0) / dstW; in _mesa_meta_BlitFramebuffer() 964 GLint dstX0, dstY0, dstX1, dstY1; in _mesa_meta_BlitFramebuffer() member 967 dstX0, dstY0, dstX1, dstY1 in _mesa_meta_BlitFramebuffer() 984 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in _mesa_meta_BlitFramebuffer() 1003 clip.dstX1 != dstX1 || clip.dstY1 != dstY1) { in _mesa_meta_BlitFramebuffer() [all …]
|
D | meta.h | 482 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 492 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 | 787 GLint dstX1, GLint dstY1, in intel_blit_framebuffer_with_blitter() argument 812 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter() 818 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_with_blitter() 859 dstX1 - dstX0, dstY1 - dstY0, GL_COPY)) { in intel_blit_framebuffer_with_blitter() 877 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument 891 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 898 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 910 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 917 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 936 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in gen4_blit_framebuffer() argument [all …]
|
D | brw_blorp.c | 493 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1, in do_blorp_blit() argument 511 dstX0, dstY0, dstX1, dstY1, in do_blorp_blit() 523 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1, in try_blorp_blit() argument 536 &dstX0, &dstY0, &dstX1, &dstY1, in try_blorp_blit() 555 dstX0, dstY0, dstX1, dstY1, 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() 659 int dstX1 = dstX0 + width; in brw_blorp_copytexsubimage() local 683 dstX0, dstY0, dstX1, dstY1, in brw_blorp_copytexsubimage() 710 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()
|
D | sglrGLContext.hpp | 149 … (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint…
|
/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.cpp | 196 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi… 197 …t srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 1148 …0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbi… in glBlitFramebufferNV() argument 1150 …return es2::BlitFramebufferNV(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter… in glBlitFramebufferNV() 1153 …t srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in glBlitFramebufferANGLE() argument 1156 …return es2::BlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, fil… in glBlitFramebufferANGLE()
|
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…
|