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

1 2 3 4 5

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_blit.h 63 int srcX1, int srcY1,
75 int srcX1, int srcY1,
u_blit.c 375 int srcX1, int srcY1,
379 if (MAX2(srcX0, srcX1) < MIN2(dstX0, dstX1))
382 if (MAX2(dstX0, dstX1) < MIN2(srcX0, srcX1))
429 int srcX1, int srcY1,
444 const int srcW = abs(srcX1 - srcX0);
463 regions_overlap(srcX0, srcY0, srcX1, srcY1,
488 srcX0 < srcX1 &&
492 (dstX1 - dstX0) == (srcX1 - srcX0) &&
547 const int srcLeft = MIN2(srcX0, srcX1);
633 s1 = srcX1;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blit.h 63 int srcX1, int srcY1,
75 int srcX1, int srcY1,
u_blit.c 375 int srcX1, int srcY1,
379 if (MAX2(srcX0, srcX1) < MIN2(dstX0, dstX1))
382 if (MAX2(dstX0, dstX1) < MIN2(srcX0, srcX1))
429 int srcX1, int srcY1,
444 const int srcW = abs(srcX1 - srcX0);
463 regions_overlap(srcX0, srcY0, srcX1, srcY1,
488 srcX0 < srcX1 &&
492 (dstX1 - dstX0) == (srcX1 - srcX0) &&
547 const int srcLeft = MIN2(srcX0, srcX1);
633 s1 = srcX1;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.c 779 clip_right_or_top(GLint *srcX0, GLint *srcX1,
792 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F;
793 *srcX1 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias);
802 bias = (*srcX0 < *srcX1) ? -0.5F : 0.5F;
803 *srcX0 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias);
812 clip_left_or_bottom(GLint *srcX0, GLint *srcX1,
825 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; /* flipped??? */
826 *srcX0 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias)
    [all...]
image.h 130 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1,
fbobject.h 204 _mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  /external/mesa3d/src/mesa/main/
image.c 779 clip_right_or_top(GLint *srcX0, GLint *srcX1,
792 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F;
793 *srcX1 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias);
802 bias = (*srcX0 < *srcX1) ? -0.5F : 0.5F;
803 *srcX0 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias);
812 clip_left_or_bottom(GLint *srcX0, GLint *srcX1,
825 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; /* flipped??? */
826 *srcX0 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias)
    [all...]
image.h 130 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1,
fbobject.h 204 _mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_blit.c 144 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
159 if (!_mesa_clip_blit(ctx, &srcX0, &srcY0, &srcX1, &srcY1,
189 info.src.x1 = srcX1;
193 info.src.x0 = srcX1;
242 srcX0, srcY0, srcX1, srcY1,
257 srcX0, srcY0, srcX1, srcY1,
301 srcX0, srcY0, srcX1, srcY1,
320 srcX0, srcY0, srcX1, srcY1,
330 srcX0, srcY0, srcX1, srcY1,
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 144 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
159 if (!_mesa_clip_blit(ctx, &srcX0, &srcY0, &srcX1, &srcY1,
189 info.src.x1 = srcX1;
193 info.src.x0 = srcX1;
242 srcX0, srcY0, srcX1, srcY1,
257 srcX0, srcY0, srcX1, srcY1,
301 srcX0, srcY0, srcX1, srcY1,
320 srcX0, srcY0, srcX1, srcY1,
330 srcX0, srcY0, srcX1, srcY1,
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blit.c 109 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
115 const GLint srcWidth = ABS(srcX1 - srcX0);
120 const GLint srcXpos = MIN2(srcX0, srcX1);
125 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0);
489 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
495 const GLint srcWidth = ABS(srcX1 - srcX0);
501 const GLint srcXpos = MIN2(srcX0, srcX1);
506 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0);
713 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
729 if (!_mesa_clip_blit(ctx, &srcX0, &srcY0, &srcX1, &srcY1
    [all...]
swrast.h 156 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  /external/mesa3d/src/mesa/swrast/
s_blit.c 109 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
115 const GLint srcWidth = ABS(srcX1 - srcX0);
120 const GLint srcXpos = MIN2(srcX0, srcX1);
125 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0);
489 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
495 const GLint srcWidth = ABS(srcX1 - srcX0);
501 const GLint srcXpos = MIN2(srcX0, srcX1);
506 const GLboolean invertX = (srcX1 < srcX0) ^ (dstX1 < dstX0);
713 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
729 if (!_mesa_clip_blit(ctx, &srcX0, &srcY0, &srcX1, &srcY1
    [all...]
swrast.h 156 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.h 78 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_fbo.c 807 GLint srcX1, GLint srcY1,
826 srcX0 - srcX1 == dstX0 - dstX1 &&
828 srcX1 >= srcX0 &&
830 srcX0 >= 0 && srcX1 <= readFb->Width &&
847 srcX1 - srcX0, /* width */
858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
864 srcX0, srcY0, srcX1, srcY1,
872 srcX0, srcY0, srcX1, srcY1,
880 srcX0, srcY0, srcX1, srcY1,
  /external/mesa3d/src/mesa/drivers/common/
meta.h 78 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_fbo.c 807 GLint srcX1, GLint srcY1,
826 srcX0 - srcX1 == dstX0 - dstX1 &&
828 srcX1 >= srcX0 &&
830 srcX0 >= 0 && srcX1 <= readFb->Width &&
847 srcX1 - srcX0, /* width */
858 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
864 srcX0, srcY0, srcX1, srcY1,
872 srcX0, srcY0, srcX1, srcY1,
880 srcX0, srcY0, srcX1, srcY1,
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Extensions3D.cpp 67 void Extensions3D::blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY0, long dstX1, long dstY1, unsigned long mask, unsigned long filter)
69 m_context->webContext()->blitFramebufferCHROMIUM(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
Extensions3D.h 253 void blitFramebuffer(long srcX0, long srcY0, long srcX1, long srcY1, long dstX0, long dstY0, long dstX1, long dstY1, unsigned long mask, unsigned long filter);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_blorp_blit.cpp 193 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
209 fixup_mirroring(mirror_x, srcX0, srcX1);
215 if (srcX1 - srcX0 != dstX1 - dstX0) return false;
220 if (!(clip_or_scissor(mirror_x, srcX0, srcX1, dstX0, dstX1,
229 if (!(clip_or_scissor(mirror_x, dstX0, dstX1, srcX0, srcX1,
299 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
316 srcX0, srcY0, srcX1, srcY1,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_blorp_blit.cpp 193 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
209 fixup_mirroring(mirror_x, srcX0, srcX1);
215 if (srcX1 - srcX0 != dstX1 - dstX0) return false;
220 if (!(clip_or_scissor(mirror_x, srcX0, srcX1, dstX0, dstX1,
229 if (!(clip_or_scissor(mirror_x, dstX0, dstX1, srcX0, srcX1,
299 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
316 srcX0, srcY0, srcX1, srcY1,
    [all...]
  /external/chromium_org/gpu/GLES2/
gl2extchromium.h 450 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
454 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,

Completed in 3520 milliseconds

1 2 3 4 5