/third_party/mesa3d/src/mesa/main/ |
D | blit.c | 68 int dstX0, int dstY0, 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 431 && (srcX0 != dstX0 || srcY0 != dstY0 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 | blit.h | 34 int dstX0, int dstY0, 39 GLint srcY1, GLint dstX0, GLint dstY0, 45 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 53 GLint dstX0, GLint dstY0, 60 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
D | image.c | 806 GLint *dstX0, GLint *dstX1, in clip_right_or_top() argument 813 assert(*dstX0 < maxValue); /* X0 should be inside right edge */ in clip_right_or_top() 814 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_right_or_top() 821 else if (*dstX0 > maxValue) { in clip_right_or_top() 824 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_right_or_top() 827 *dstX0 = maxValue; in clip_right_or_top() 839 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom() argument 844 if (*dstX0 < minValue) { in clip_left_or_bottom() 847 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom() 850 *dstX0 = minValue; in clip_left_or_bottom() [all …]
|
D | image.h | 135 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
|
/third_party/mesa3d/src/mesa/drivers/common/ |
D | meta_blit.c | 93 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blitframebuffer_texture() argument 102 const GLint dstX = MIN2(dstX0, dstX1); in blitframebuffer_texture() 104 const GLint dstW = abs(dstX1 - dstX0); in blitframebuffer_texture() 419 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_meta_BlitFramebuffer() argument 422 const GLint dstW = abs(dstX1 - dstX0); in _mesa_meta_BlitFramebuffer() 424 const GLint dstFlipX = (dstX1 - dstX0) / dstW; in _mesa_meta_BlitFramebuffer() 429 GLint dstX0, dstY0, dstX1, dstY1; in _mesa_meta_BlitFramebuffer() member 432 dstX0, dstY0, dstX1, dstY1 in _mesa_meta_BlitFramebuffer() 447 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in _mesa_meta_BlitFramebuffer() 465 if (clip.dstX0 != dstX0 || clip.dstY0 != dstY0 || in _mesa_meta_BlitFramebuffer() [all …]
|
D | meta.h | 410 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, 419 GLint dstX0, GLint dstY0,
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_blit.c | 54 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in st_BlitFramebuffer() argument 65 GLint dstX0, dstY0, dstX1, dstY1; in st_BlitFramebuffer() member 79 clip.dstX0 = dstX0; in st_BlitFramebuffer() 92 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in st_BlitFramebuffer() 97 (dstX0 != clip.dstX0) || in st_BlitFramebuffer() 111 blit.scissor.minx = MIN2(clip.dstX0, clip.dstX1); in st_BlitFramebuffer() 113 blit.scissor.maxx = MAX2(clip.dstX0, clip.dstX1); in st_BlitFramebuffer() 146 if (dstX0 < dstX1) { in st_BlitFramebuffer() 147 blit.dst.box.x = dstX0; in st_BlitFramebuffer() 149 blit.dst.box.width = dstX1 - dstX0; in st_BlitFramebuffer() [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_meta_util.c | 163 GLfloat *dstX0, GLfloat *dstY0, 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() 224 || *dstX0 == *dstX1 || *dstY0 == *dstY1) in brw_meta_mirror_clip_and_scissor() 227 float scaleX = (float) (*srcX1 - *srcX0) / (*dstX1 - *dstX0); in brw_meta_mirror_clip_and_scissor() 232 srcX0, dstX0, dstX1, in brw_meta_mirror_clip_and_scissor() 238 srcX1, dstX1, dstX0, in brw_meta_mirror_clip_and_scissor() 274 || *dstX0 == *dstX1 || *dstY0 == *dstY1; in brw_meta_mirror_clip_and_scissor()
|
D | brw_fbo.c | 802 GLint dstX0, GLint dstY0, in brw_blit_framebuffer_with_blitter() argument 828 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in brw_blit_framebuffer_with_blitter() 834 dstX0 >= 0 && dstX1 <= drawFb->Width && in brw_blit_framebuffer_with_blitter() 874 dstX0, dstY0, drawFb->FlipY, in brw_blit_framebuffer_with_blitter() 875 dstX1 - dstX0, dstY1 - dstY0, in brw_blit_framebuffer_with_blitter() 894 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in brw_blit_framebuffer() argument 917 dstX0, dstY0, dstX1, dstY1, in brw_blit_framebuffer() 925 dstX0, dstY0, dstX1, dstY1, in brw_blit_framebuffer() 935 dstX0, dstY0, dstX1, dstY1, in brw_blit_framebuffer() 946 dstX0, dstY0, dstX1, dstY1, in brw_blit_framebuffer()
|
D | brw_blorp.c | 571 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1, in do_blorp_blit() argument 589 dstX0, dstY0, dstX1, dstY1, in do_blorp_blit() 601 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1, in try_blorp_blit() argument 615 &dstX0, &dstY0, &dstX1, &dstY1, in try_blorp_blit() 634 dstX0, dstY0, dstX1, dstY1, in try_blorp_blit() 655 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit() 671 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, in try_blorp_blit() 695 int dstX0, int dstY0, in brw_blorp_copytexsubimage() argument 736 int dstX1 = dstX0 + width; in brw_blorp_copytexsubimage() 756 dstX0, dstY0, dstX1, dstY1, in brw_blorp_copytexsubimage() [all …]
|
D | brw_meta_util.h | 41 GLfloat *dstX0, GLfloat *dstY0,
|
/third_party/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() 516 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1) in blit_linear() argument 523 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_linear() 529 const GLint dstXpos = MIN2(dstX0, dstX1); in blit_linear() 532 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_linear() 744 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _swrast_BlitFramebuffer() argument 767 &dstX0, &dstY0, &dstX1, &dstY1)) { in _swrast_BlitFramebuffer() [all …]
|
D | swrast.h | 161 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
/third_party/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_fbo.c | 647 GLint dstX0, GLint dstY0, in intel_blit_framebuffer_with_blitter() argument 673 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter() 679 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_with_blitter() 721 dstX0, dstY0, dst_rb->Name == 0, in intel_blit_framebuffer_with_blitter() 722 dstX1 - dstX0, dstY1 - dstY0, COLOR_LOGICOP_COPY)) { in intel_blit_framebuffer_with_blitter() 740 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument 746 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 754 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
|
/third_party/mesa3d/src/gallium/auxiliary/postprocess/ |
D | pp_run.c | 46 int dstX0, int dstY0, in pp_blit() argument 66 blit.dst.box.x = dstX0; in pp_blit() 69 blit.dst.box.width = dstX1 - dstX0; in pp_blit()
|
D | pp_private.h | 106 int dstX0, int dstY0,
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/glprototypes/ |
D | fbo.h | 116 GLint dstX0,
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | GLX_AMD_gpu_association.txt | 111 GLint srcX1, GLint srcY1, GLint dstX0, 364 GLint srcX1, GLint srcY1, GLint dstX0, 374 to the destination rectangle, bound by the locations (dstX0, dstY0) 390 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0> 391 <dstX0>, and <dstY0> are the same as those that apply for
|
D | WGL_AMD_gpu_association.txt | 106 GLint srcX1, GLint srcY1, GLint dstX0, 350 GLint srcX1, GLint srcY1, GLint dstX0, 360 to the destination rectangle, bound by the locations (dstX0, dstY0) 376 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0> 377 <dstX0>, and <dstY0> are the same as those that apply for
|
/third_party/openGLES/extensions/AMD/ |
D | GLX_AMD_gpu_association.txt | 111 GLint srcX1, GLint srcY1, GLint dstX0, 364 GLint srcX1, GLint srcY1, GLint dstX0, 374 to the destination rectangle, bound by the locations (dstX0, dstY0) 390 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0> 391 <dstX0>, and <dstY0> are the same as those that apply for
|
D | WGL_AMD_gpu_association.txt | 106 GLint srcX1, GLint srcY1, GLint dstX0, 350 GLint srcX1, GLint srcY1, GLint dstX0, 360 to the destination rectangle, bound by the locations (dstX0, dstY0) 376 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0> 377 <dstX0>, and <dstY0> are the same as those that apply for
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
D | sglrContextWrapper.cpp | 359 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()
|
D | sglrGLContext.cpp | 600 void GLContext::blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, … 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()
|
/third_party/flutter/skia/third_party/externals/angle2/extensions/ |
D | ANGLE_framebuffer_blit.txt | 58 int dstX0, int dstY0, int dstX1, int dstY1, 125 int dstX0, int dstY0, int dstX1, int dstY1, 134 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | ANGLE_framebuffer_blit.txt | 58 int dstX0, int dstY0, int dstX1, int dstY1, 125 int dstX0, int dstY0, int dstX1, int dstY1, 134 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds
|