/external/mesa3d/src/mesa/main/ |
D | image.c | 780 GLint *dstX0, GLint *dstX1, in clip_right_or_top() argument 787 ASSERT(*dstX0 < maxValue); /* X0 should be inside right edge */ in clip_right_or_top() 788 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_right_or_top() 795 else if (*dstX0 > maxValue) { in clip_right_or_top() 798 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_right_or_top() 801 *dstX0 = maxValue; in clip_right_or_top() 813 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom() argument 818 if (*dstX0 < minValue) { in clip_left_or_bottom() 821 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom() 824 *dstX0 = minValue; in clip_left_or_bottom() [all …]
|
D | image.h | 131 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
|
D | fbobject.h | 205 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
D | fbobject.c | 2880 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_BlitFramebufferEXT() argument 2897 dstX0, dstY0, dstX1, dstY1, in _mesa_BlitFramebufferEXT() 3028 if (abs(srcX1 - srcX0) != abs(dstX1 - dstX0) || in _mesa_BlitFramebufferEXT() 3068 dstX0, dstY0, dstX1, dstY1, in _mesa_BlitFramebufferEXT() 3108 dstX0, dstY0, dstX1, dstY1, in _mesa_BlitFramebufferEXT()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_blit.c | 145 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in st_BlitFramebuffer() argument 160 &dstX0, &dstY0, &dstX1, &dstY1)) { in st_BlitFramebuffer() 185 if (dstX0 < dstX1) { in st_BlitFramebuffer() 186 info.dst.x0 = dstX0; in st_BlitFramebuffer() 192 info.dst.x1 = dstX0; in st_BlitFramebuffer() 244 dstSurf, dstX0, dstY0, dstX1, dstY1, in st_BlitFramebuffer() 259 dstSurf, dstX0, dstY0, dstX1, dstY1, in st_BlitFramebuffer() 303 dstDepthSurf, dstX0, dstY0, dstX1, dstY1, in st_BlitFramebuffer() 322 dstDepthSurf, dstX0, dstY0, dstX1, dstY1, in st_BlitFramebuffer() 332 dstStencilSurf, dstX0, dstY0, dstX1, dstY1, in st_BlitFramebuffer()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_blit.c | 110 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blit_nearest() argument 116 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_nearest() 122 const GLint dstXpos = MIN2(dstX0, dstX1); in blit_nearest() 125 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_nearest() 490 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1) in blit_linear() argument 496 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_linear() 503 const GLint dstXpos = MIN2(dstX0, dstX1); in blit_linear() 506 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0); in blit_linear() 714 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _swrast_BlitFramebuffer() argument 730 &dstX0, &dstY0, &dstX1, &dstY1)) { in _swrast_BlitFramebuffer() [all …]
|
D | swrast.h | 157 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_blit.h | 66 int dstX0, int dstY0, 77 int dstX0, int dstY0,
|
D | u_blit.c | 376 int dstX0, int dstY0, in regions_overlap() argument 379 if (MAX2(srcX0, srcX1) < MIN2(dstX0, dstX1)) in regions_overlap() 382 if (MAX2(dstX0, dstX1) < MIN2(srcX0, srcX1)) in regions_overlap() 432 int dstX0, int dstY0, in util_blit_pixels() argument 464 dstX0, dstY0, dstX1, dstY1); in util_blit_pixels() 489 dstX0 < dstX1 && in util_blit_pixels() 492 (dstX1 - dstX0) == (srcX1 - srcX0) && in util_blit_pixels() 504 dstX0, dstY0, dst->u.tex.first_layer,/* dest */ in util_blit_pixels() 552 int tmp = dstX0; in util_blit_pixels() 553 dstX0 = dstX1; in util_blit_pixels() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_blorp_blit.cpp | 149 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in do_blorp_blit() argument 166 srcX0, srcY0, dstX0, dstY0, dstX1, dstY1, in do_blorp_blit() 194 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in try_blorp_blit() argument 210 fixup_mirroring(mirror_x, dstX0, dstX1); in try_blorp_blit() 215 if (srcX1 - srcX0 != dstX1 - dstX0) return false; in try_blorp_blit() 220 if (!(clip_or_scissor(mirror_x, srcX0, srcX1, dstX0, dstX1, in try_blorp_blit() 229 if (!(clip_or_scissor(mirror_x, dstX0, dstX1, srcX0, srcX1, in try_blorp_blit() 267 dstX0, dstY0, dstX1, dstY1, mirror_x, mirror_y); in try_blorp_blit() 278 dstX0, dstY0, dstX1, dstY1, mirror_x, mirror_y); in try_blorp_blit() 288 dstX0, dstY0, dstX1, dstY1, mirror_x, mirror_y); in try_blorp_blit() [all …]
|
D | intel_fbo.c | 808 GLint dstX0, GLint dstY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 826 srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_copy_tex_sub_image() 832 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_copy_tex_sub_image() 844 dstX0, dstY0, in intel_blit_framebuffer_copy_tex_sub_image() 859 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument 865 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 873 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 881 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
|
D | brw_context.h | 1180 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_fbo.c | 808 GLint dstX0, GLint dstY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 826 srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_copy_tex_sub_image() 832 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_copy_tex_sub_image() 844 dstX0, dstY0, in intel_blit_framebuffer_copy_tex_sub_image() 859 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument 865 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 873 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 881 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_fbo.c | 808 GLint dstX0, GLint dstY0, in intel_blit_framebuffer_copy_tex_sub_image() argument 826 srcX0 - srcX1 == dstX0 - dstX1 && in intel_blit_framebuffer_copy_tex_sub_image() 832 dstX0 >= 0 && dstX1 <= drawFb->Width && in intel_blit_framebuffer_copy_tex_sub_image() 844 dstX0, dstY0, in intel_blit_framebuffer_copy_tex_sub_image() 859 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in intel_blit_framebuffer() argument 865 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 873 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer() 881 dstX0, dstY0, dstX1, dstY1, in intel_blit_framebuffer()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | renderer.c | 1418 int dstX0, int dstY0, in renderer_copy_surface() argument 1439 int tmp = dstX0; in renderer_copy_surface() 1440 dstX0 = dstX1; in renderer_copy_surface() 1500 dstX0, dstY0, dstX1 - dstX0, dstY1 - dstY0, in renderer_copy_surface() 1508 dstX0, dstY0, dstX1 - dstX0, dstY1 - dstY0, in renderer_copy_surface()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.h | 79 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
|
D | meta.c | 1431 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in blitframebuffer_texture() argument 1523 verts[0].x = (GLfloat) dstX0; in blitframebuffer_texture() 1529 verts[3].x = (GLfloat) dstX0; in blitframebuffer_texture() 1576 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in _mesa_meta_BlitFramebuffer() argument 1602 dstX0, dstY0, dstX1, dstY1, mask, filter); in _mesa_meta_BlitFramebuffer() 1607 GLint tmp = dstX0; in _mesa_meta_BlitFramebuffer() 1608 dstX0 = dstX1; in _mesa_meta_BlitFramebuffer() 1647 dstX0, dstY0, dstX1, dstY1, mask, filter); in _mesa_meta_BlitFramebuffer() 1661 verts[0].x = (GLfloat) dstX0; in _mesa_meta_BlitFramebuffer() 1667 verts[3].x = (GLfloat) dstX0; in _mesa_meta_BlitFramebuffer() [all …]
|
/external/deqp/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()
|
D | sglrGLContext.hpp | 149 …virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int ds…
|
D | sglrContext.hpp | 137 …virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0,…
|
/external/skia/src/gpu/gl/ |
D | GrGLNoOpInterface.h | 315 GrGLint dstX0,
|
D | GrGLNoOpInterface.cpp | 426 GrGLint dstX0, in noOpGLBlitFramebuffer() argument
|
/external/mesa3d/include/GL/ |
D | wglext.h | 855 … (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… 865 … (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin…
|
/external/mesa3d/include/GLES2/ |
D | gl2ext.h | 940 …amebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… 942 …FFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin…
|