Home
last modified time | relevance | path

Searched refs:srcX0 (Results 1 – 25 of 64) sorted by relevance

123

/external/mesa3d/src/mesa/main/
Dblit.c66 _mesa_regions_overlap(int srcX0, int srcY0, 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()
184 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_blit_framebuffer() argument
451 && (srcX0 != dstX0 || srcY0 != dstY0 in _mesa_blit_framebuffer()
470 if (abs(srcX1 - srcX0) != abs(dstX1 - dstX0) || in _mesa_blit_framebuffer()
487 srcX0, srcY0, srcX1, srcY1, in _mesa_blit_framebuffer()
530 (srcX1 - srcX0) == 0 || (srcY1 - srcY0) == 0 || in _mesa_blit_framebuffer()
537 srcX0, srcY0, srcX1, srcY1, in _mesa_blit_framebuffer()
550 _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_BlitFramebuffer() argument
[all …]
Dimage.c744 const GLint srcX0 = *srcX, srcY0 = *srcY; in _mesa_clip_copytexsubimage() local
748 *destX = *destX + *srcX - srcX0; in _mesa_clip_copytexsubimage()
805 clip_right_or_top(GLint *srcX0, GLint *srcX1, in clip_right_or_top() argument
818 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; in clip_right_or_top()
819 *srcX1 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias); in clip_right_or_top()
828 bias = (*srcX0 < *srcX1) ? -0.5F : 0.5F; in clip_right_or_top()
829 *srcX0 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias); in clip_right_or_top()
838 clip_left_or_bottom(GLint *srcX0, GLint *srcX1, in clip_left_or_bottom() argument
851 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; in clip_left_or_bottom()
852 *srcX0 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias); in clip_left_or_bottom()
[all …]
Dblit.h32 _mesa_regions_overlap(int srcX0, int srcY0,
41 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
46 _mesa_BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
52 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
Dimage.h135 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1,
/external/mesa3d/src/gallium/auxiliary/util/
Du_blit.c314 regions_overlap(int srcX0, int srcY0, 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()
368 int srcX0, int srcY0, in util_blit_pixels() argument
379 const int srcW = abs(srcX1 - srcX0); in util_blit_pixels()
396 regions_overlap(srcX0, srcY0, srcX1, srcY1, in util_blit_pixels()
434 srcX0 < srcX1 && in util_blit_pixels()
438 (dstX1 - dstX0) == (srcX1 - srcX0) && in util_blit_pixels()
442 src_box.x = srcX0; in util_blit_pixels()
470 info.src.box.x = srcX0; in util_blit_pixels()
[all …]
Du_blit.h57 int srcX0, int srcY0,
69 int srcX0, int srcY0,
/external/mesa3d/src/mesa/swrast/
Ds_blit.c112 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_nearest() argument
121 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_nearest()
126 const GLint srcXpos = MIN2(srcX0, srcX1); in blit_nearest()
131 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_nearest()
513 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blit_linear() argument
520 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_linear()
525 const GLint srcXpos = MIN2(srcX0, srcX1); in blit_linear()
530 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_linear()
738 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _swrast_BlitFramebuffer() argument
761 if (!_mesa_clip_blit(ctx, readFb, drawFb, &srcX0, &srcY0, &srcX1, &srcY1, in _swrast_BlitFramebuffer()
[all …]
Dswrast.h160 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
/external/mesa3d/src/mesa/drivers/common/
Dmeta_blit.c604 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in blitframebuffer_texture() argument
618 const int srcW = abs(srcX1 - srcX0); in blitframebuffer_texture()
683 srcX0, srcY0, in blitframebuffer_texture()
689 srcX0 = 0; in blitframebuffer_texture()
762 s0 = srcX0 / (float) texImage->Width; in blitframebuffer_texture()
771 s0 = (float) srcX0; in blitframebuffer_texture()
953 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in _mesa_meta_BlitFramebuffer() argument
963 GLint srcX0, srcY0, srcX1, srcY1; in _mesa_meta_BlitFramebuffer() member
966 srcX0, srcY0, srcX1, srcY1, in _mesa_meta_BlitFramebuffer()
983 &clip.srcX0, &clip.srcY0, &clip.srcX1, &clip.srcY1, in _mesa_meta_BlitFramebuffer()
[all …]
Dmeta.h481 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
489 GLint srcX0, GLint srcY0,
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_fbo.c784 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_with_blitter() argument
812 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter()
814 srcX1 >= srcX0 && in intel_blit_framebuffer_with_blitter()
816 srcX0 >= 0 && srcX1 <= readFb->Width && in intel_blit_framebuffer_with_blitter()
855 srcX0, srcY0, src_rb->Name == 0, in intel_blit_framebuffer_with_blitter()
876 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument
890 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
897 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
909 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
916 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
[all …]
Dbrw_meta_util.c161 GLfloat *srcX0, GLfloat *srcY0, in brw_meta_mirror_clip_and_scissor() argument
171 fixup_mirroring(mirror_x, srcX0, srcX1); in brw_meta_mirror_clip_and_scissor()
188 if (!compute_pixels_clipped(*srcX0, *srcY0, *srcX1, *srcY1, 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()
Dbrw_blorp.c492 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1, in do_blorp_blit() argument
510 srcX0, srcY0, srcX1, srcY1, in do_blorp_blit()
522 GLfloat srcX0, GLfloat srcY0, GLfloat srcX1, GLfloat srcY1, in try_blorp_blit() argument
535 &srcX0, &srcY0, &srcX1, &srcY1, in try_blorp_blit()
554 srcX0, srcY0, srcX1, srcY1, in try_blorp_blit()
576 dst_irb, MESA_FORMAT_NONE, srcX0, srcY0, in try_blorp_blit()
586 dst_irb, MESA_FORMAT_NONE, srcX0, srcY0, in try_blorp_blit()
602 int srcX0, int srcY0, in brw_blorp_copytexsubimage() argument
658 int srcX1 = srcX0 + width; in brw_blorp_copytexsubimage()
682 srcX0, srcY0, srcX1, srcY1, in brw_blorp_copytexsubimage()
[all …]
Dbrw_meta_util.h39 GLfloat *srcX0, GLfloat *srcY0,
Dbrw_context.h1511 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1520 int srcX0, int srcY0,
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_blit.c51 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in st_BlitFramebuffer() argument
62 GLint srcX0, srcY0, srcX1, srcY1; in st_BlitFramebuffer() member
73 clip.srcX0 = srcX0; in st_BlitFramebuffer()
89 &clip.srcX0, &clip.srcY0, &clip.srcX1, &clip.srcY1, in st_BlitFramebuffer()
146 blit.src.box.x = srcX0; in st_BlitFramebuffer()
148 blit.src.box.width = srcX1 - srcX0; in st_BlitFramebuffer()
153 blit.src.box.width = srcX0 - srcX1; in st_BlitFramebuffer()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_fbo.c640 GLint srcX0, GLint srcY0, in intel_blit_framebuffer_with_blitter() argument
668 if (!(srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_with_blitter()
670 srcX1 >= srcX0 && in intel_blit_framebuffer_with_blitter()
672 srcX0 >= 0 && srcX1 <= readFb->Width && in intel_blit_framebuffer_with_blitter()
713 srcX0, srcY0, src_rb->Name == 0, in intel_blit_framebuffer_with_blitter()
734 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, in intel_blit_framebuffer() argument
740 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
748 srcX0, srcY0, srcX1, srcY1, in intel_blit_framebuffer()
/external/mesa3d/src/gallium/auxiliary/postprocess/
Dpp_run.c41 int srcX0, int srcY0, in pp_blit() argument
55 blit.src.box.x = srcX0; in pp_blit()
58 blit.src.box.width = srcX1 - srcX0; in pp_blit()
Dpp_private.h101 int srcX0, int srcY0,
/external/deqp/framework/opengl/simplereference/
DsglrContextWrapper.cpp359 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()
DsglrGLContext.cpp600 void GLContext::blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, … in blitFramebuffer() argument
607 << srcX0 << ", " << srcY0 << ", " << srcX1 << ", " << srcY1 << ", " in blitFramebuffer()
613 …m_context.getFunctions().blitFramebuffer(readOffset.x()+srcX0, readOffset.y()+srcY0, readOffset.x(… in blitFramebuffer()
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTgles2Ext.h108 …typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLi…
/external/swiftshader/src/OpenGL/libGLESv2/
Dmain.cpp326 GL_APICALL void BlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, …
327 GL_APICALL void BlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX…
1278 GL_APICALL void GL_APIENTRY glBlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,… in glBlitFramebufferNV() argument
1280 …return es2::BlitFramebufferNV(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter… in glBlitFramebufferNV()
1283 GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint src… in glBlitFramebufferANGLE() argument
1286 …return es2::BlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, fil… in glBlitFramebufferANGLE()
DlibGLESv2.hpp216 …void (*glBlitFramebufferNV)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint…
217 …void (*glBlitFramebufferANGLE)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GL…
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES2/
Dgl2ext.h1239 GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint sr…
1241 typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, G…
1774 GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1…
1776 typedef void (GL_APIENTRYP PFNBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint …

123