HomeSort by relevance Sort by last modified time
    Searched refs:dstX0 (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /external/mesa3d/src/mesa/main/
blit.h 34 int dstX0, int dstY0,
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,
blit.c 68 int dstX0, int dstY0,
71 if (MAX2(srcX0, srcX1) <= MIN2(dstX0, dstX1))
74 if (MAX2(dstX0, dstX1) <= MIN2(srcX0, srcX1))
185 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
451 && (srcX0 != dstX0 || srcY0 != dstY0
470 if (abs(srcX1 - srcX0) != abs(dstX1 - dstX0) ||
488 dstX0, dstY0, dstX1, dstY1,
531 (dstX1 - dstX0) == 0 || (dstY1 - dstY0) == 0) {
538 dstX0, dstY0, dstX1, dstY1,
551 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1
    [all...]
image.c 806 GLint *dstX0, GLint *dstX1,
813 assert(*dstX0 < maxValue); /* X0 should be inside right edge */
814 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
821 else if (*dstX0 > maxValue) {
824 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
827 *dstX0 = maxValue;
839 GLint *dstX0, GLint *dstX1,
844 if (*dstX0 < minValue) {
847 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0)
    [all...]
image.h 136 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
  /external/mesa3d/src/gallium/auxiliary/util/
u_blit.h 61 int dstX0, int dstY0,
73 int dstX0, int dstY0,
u_blit.c 316 int dstX0, int dstY0,
319 if (MAX2(srcX0, srcX1) <= MIN2(dstX0, dstX1))
322 if (MAX2(dstX0, dstX1) <= MIN2(srcX0, srcX1))
372 int dstX0, int dstY0,
397 dstX0, dstY0, dstX1, dstY1);
435 dstX0 < dstX1 &&
438 (dstX1 - dstX0) == (srcX1 - srcX0) &&
450 dstX0, dstY0, dst->u.tex.first_layer,/* dest */
459 info.dst.box.x = dstX0;
462 info.dst.box.width = dstX1 - dstX0;
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 52 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
63 GLint dstX0, dstY0, dstX1, dstY1;
77 clip.dstX0 = dstX0;
90 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) {
95 (dstX0 != clip.dstX0) ||
109 blit.scissor.minx = MIN2(clip.dstX0, clip.dstX1);
111 blit.scissor.maxx = MAX2(clip.dstX0, clip.dstX1);
144 if (dstX0 < dstX1)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_meta_util.h 41 GLfloat *dstX0, GLfloat *dstY0,
brw_meta_util.c 112 * \param dst0 the dst rect coordinate (for example dstX0)
163 GLfloat *dstX0, GLfloat *dstY0,
172 fixup_mirroring(mirror_x, dstX0, dstX1);
193 if (!compute_pixels_clipped(*dstX0, *dstY0, *dstX1, *dstY1,
203 * For example, if srcX0 and dstX0 need both to be clipped we want to avoid
204 * the situation where we clip srcX0 first, then adjust dstX0 accordingly
205 * but then we realize that the resulting dstX0 still needs to be clipped,
206 * so we clip dstX0 and adjust srcX0 again. Because we are applying scaling
218 * the dst rect so we should clip dstX0 only and adjust srcX0. This is
223 float scaleX = (float) (*srcX1 - *srcX0) / (*dstX1 - *dstX0);
    [all...]
intel_fbo.c 786 GLint dstX0, GLint dstY0,
812 if (!(srcX0 - srcX1 == dstX0 - dstX1 &&
818 dstX0 >= 0 && dstX1 <= drawFb->Width &&
858 dstX0, dstY0, dst_rb->Name == 0,
859 dstX1 - dstX0, dstY1 - dstY0, GL_COPY)) {
877 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
891 dstX0, dstY0, dstX1, dstY1,
898 dstX0, dstY0, dstX1, dstY1,
910 dstX0, dstY0, dstX1, dstY1,
917 dstX0, dstY0, dstX1, dstY1
    [all...]
brw_blorp.c 493 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1,
511 dstX0, dstY0, dstX1, dstY1,
523 GLfloat dstX0, GLfloat dstY0, GLfloat dstX1, GLfloat dstY1,
536 &dstX0, &dstY0, &dstX1, &dstY1,
555 dstX0, dstY0, dstX1, dstY1,
577 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
587 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
603 int dstX0, int dstY0,
659 int dstX1 = dstX0 + width;
683 dstX0, dstY0, dstX1, dstY1
    [all...]
brw_context.h     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta_blit.c 605 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
614 const GLint dstX = MIN2(dstX0, dstX1);
616 const GLint dstW = abs(dstX1 - dstX0);
    [all...]
meta.h 482 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
491 GLint dstX0, GLint dstY0,
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_private.h 105 int dstX0, int dstY0,
pp_run.c 45 int dstX0, int dstY0,
65 blit.dst.box.x = dstX0;
68 blit.dst.box.width = dstX1 - dstX0;
  /external/mesa3d/src/mesa/swrast/
s_blit.c 113 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
122 const GLint dstWidth = ABS(dstX1 - dstX0);
128 const GLint dstXpos = MIN2(dstX0, dstX1);
131 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0);
514 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1)
521 const GLint dstWidth = ABS(dstX1 - dstX0);
527 const GLint dstXpos = MIN2(dstX0, dstX1);
530 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0);
739 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
762 &dstX0, &dstY0, &dstX1, &dstY1))
    [all...]
swrast.h 161 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_fbo.c 642 GLint dstX0, GLint dstY0,
668 if (!(srcX0 - srcX1 == dstX0 - dstX1 &&
674 dstX0 >= 0 && dstX1 <= drawFb->Width &&
716 dstX0, dstY0, dst_rb->Name == 0,
717 dstX1 - dstX0, dstY1 - dstY0, GL_COPY)) {
735 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
741 dstX0, dstY0, dstX1, dstY1,
749 dstX0, dstY0, dstX1, dstY1,
  /external/deqp/framework/opengl/simplereference/
sglrContextWrapper.cpp 359 void ContextWrapper::glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, deUint32 filter)
361 m_curCtx->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
sglrGLContext.cpp 600 void GLContext::blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, deUint32 filter)
608 << dstX0 << ", " << dstY0 << ", " << dstX1 << ", " << dstY1 << ", "
614 drawOffset.x()+dstX0, drawOffset.y()+dstY0, drawOffset.x()+dstX1, drawOffset.y()+dstY1,
sglrContext.hpp 137 virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, deUint32 filter) = DE_NULL;
sglrGLContext.hpp 149 virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, deUint32 mask, deUint32 filter);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTgles2Ext.h 108 typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
  /external/swiftshader/src/OpenGL/libGLESv2/
main.cpp 326 GL_APICALL void BlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
327 GL_APICALL void BlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
    [all...]

Completed in 1173 milliseconds

1 2 3 4 5 6 7 8 9