Home
last modified time | relevance | path

Searched refs:dstY1 (Results 1 – 25 of 181) sorted by relevance

12345678

/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_blit.c54 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in st_BlitFramebuffer() argument
65 GLint dstX0, dstY0, dstX1, dstY1; in st_BlitFramebuffer() member
82 clip.dstY1 = dstY1; in st_BlitFramebuffer()
92 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in st_BlitFramebuffer()
100 (dstY1 != clip.dstY1); in st_BlitFramebuffer()
105 dstY1 = drawFB->Height - dstY1; in st_BlitFramebuffer()
108 clip.dstY1 = drawFB->Height - clip.dstY1; in st_BlitFramebuffer()
112 blit.scissor.miny = MIN2(clip.dstY0, clip.dstY1); in st_BlitFramebuffer()
114 blit.scissor.maxy = MAX2(clip.dstY0, clip.dstY1); in st_BlitFramebuffer()
128 if (srcY0 > srcY1 && dstY0 > dstY1) { in st_BlitFramebuffer()
[all …]
/third_party/mesa3d/src/mesa/main/
Dblit.c69 int dstX1, int dstY1) in _mesa_regions_overlap() argument
77 if (MAX2(srcY0, srcY1) <= MIN2(dstY0, dstY1)) in _mesa_regions_overlap()
80 if (MAX2(dstY0, dstY1) <= MIN2(srcY0, srcY1)) 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()
451 abs(srcY1 - srcY0) != abs(dstY1 - dstY0)) { 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 …]
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.c885 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1) in _mesa_clip_blit() argument
913 if (*dstY0 == *dstY1) in _mesa_clip_blit()
915 if (*dstY0 <= dstYmin && *dstY1 <= dstYmin) in _mesa_clip_blit()
917 if (*dstY0 >= dstYmax && *dstY1 >= dstYmax) in _mesa_clip_blit()
938 clip_right_or_top(srcY0, srcY1, dstY0, dstY1, dstYmax); in _mesa_clip_blit()
940 clip_left_or_bottom(srcY0, srcY1, dstY0, dstY1, dstYmin); in _mesa_clip_blit()
946 clip_right_or_top(dstY0, dstY1, srcY0, srcY1, srcYmax); in _mesa_clip_blit()
948 clip_left_or_bottom(dstY0, dstY1, srcY0, srcY1, srcYmin); in _mesa_clip_blit()
964 assert(*dstY1 >= dstYmin); in _mesa_clip_blit()
965 assert(*dstY1 <= dstYmax); in _mesa_clip_blit()
Dimage.h135 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
/third_party/mesa3d/src/mesa/drivers/common/
Dmeta_blit.c93 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blitframebuffer_texture() argument
103 const GLint dstY = MIN2(dstY0, dstY1); in blitframebuffer_texture()
105 const GLint dstH = abs(dstY1 - dstY0); in blitframebuffer_texture()
419 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_meta_BlitFramebuffer() argument
423 const GLint dstH = abs(dstY1 - dstY0); in _mesa_meta_BlitFramebuffer()
425 const GLint dstFlipY = (dstY1 - dstY0) / dstH; 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()
466 clip.dstX1 != dstX1 || clip.dstY1 != dstY1) { in _mesa_meta_BlitFramebuffer()
[all …]
Dmeta.h410 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
420 GLint dstX1, GLint dstY1,
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_meta_util.c164 GLfloat *dstX1, GLfloat *dstY1, in brw_meta_mirror_clip_and_scissor() argument
174 fixup_mirroring(mirror_y, dstY0, dstY1); 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()
228 float scaleY = (float) (*srcY1 - *srcY0) / (*dstY1 - *dstY0); in brw_meta_mirror_clip_and_scissor()
244 srcY0, dstY0, dstY1, in brw_meta_mirror_clip_and_scissor()
250 srcY1, dstY1, dstY0, in brw_meta_mirror_clip_and_scissor()
265 *dstY0 = draw_fb->Height - *dstY1; in brw_meta_mirror_clip_and_scissor()
266 *dstY1 = tmp; in brw_meta_mirror_clip_and_scissor()
274 || *dstX0 == *dstX1 || *dstY0 == *dstY1; in brw_meta_mirror_clip_and_scissor()
Dbrw_fbo.c803 GLint dstX1, GLint dstY1, in brw_blit_framebuffer_with_blitter() argument
829 srcY0 - srcY1 == dstY0 - dstY1 && in brw_blit_framebuffer_with_blitter()
835 dstY0 >= 0 && dstY1 <= drawFb->Height && 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()
Dbrw_blorp.c571 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()
737 int dstY1 = dstY0 + height; in brw_blorp_copytexsubimage() local
756 dstX0, dstY0, dstX1, dstY1, in brw_blorp_copytexsubimage()
783 dstX0, dstY0, dstX1, dstY1, in brw_blorp_copytexsubimage()
[all …]
Dbrw_meta_util.h42 GLfloat *dstX1, GLfloat *dstY1,
/third_party/mesa3d/src/mesa/swrast/
Ds_blit.c113 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blit_nearest() argument
124 const GLint dstHeight = ABS(dstY1 - dstY0); in blit_nearest()
129 const GLint dstYpos = MIN2(dstY0, dstY1); in blit_nearest()
132 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); in blit_nearest()
516 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1) in blit_linear() argument
525 const GLint dstHeight = ABS(dstY1 - dstY0); in blit_linear()
530 const GLint dstYpos = MIN2(dstY0, dstY1); in blit_linear()
533 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0); 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 …]
Dswrast.h161 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
/third_party/mesa3d/src/mesa/drivers/dri/i915/
Dintel_fbo.c648 GLint dstX1, GLint dstY1, in intel_blit_framebuffer_with_blitter() argument
674 srcY0 - srcY1 == dstY0 - dstY1 && in intel_blit_framebuffer_with_blitter()
680 dstY0 >= 0 && dstY1 <= drawFb->Height && 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/
Dpp_private.h107 int dstX1, int dstY1);
Dpp_run.c47 int dstX1, int dstY1) in pp_blit() argument
70 blit.dst.box.height = dstY1 - dstY0; in pp_blit()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/glprototypes/
Dfbo.h119 GLint dstY1,
/third_party/vk-gl-cts/framework/opengl/simplereference/
DsglrContextWrapper.cpp359 …X0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, de… in glBlitFramebuffer() argument
361 m_curCtx->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebuffer()
DsglrGLContext.cpp600 …X0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, de… 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/
DANGLE_framebuffer_blit.txt58 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/
DANGLE_framebuffer_blit.txt58 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/openGLES/extensions/ANGLE/
DANGLE_framebuffer_blit.txt58 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/opengl-registry/extensions/ANGLE/
DANGLE_framebuffer_blit.txt58 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/swiftshader/src/OpenGL/libGLESv2/
Dentry_points.cpp943 …0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, … 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 srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, … in glBlitFramebuffer() argument
1117 return gl::BlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebuffer()
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DGLX_AMD_gpu_association.txt112 GLint dstY0, GLint dstX1, GLint dstY1,
365 GLint dstY0, GLint dstX1, GLint dstY1,
375 and (dstX1, dstY1). The lower bounds of the rectangle are inclusive,

12345678