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

1 2 3 4 5 6

  /external/mesa3d/src/gallium/auxiliary/util/
u_blit.h 67 int dstX1, int dstY1,
78 int dstX1, int dstY1,
u_blit.c 377 int dstX1, int dstY1)
385 if (MAX2(srcY0, srcY1) < MIN2(dstY0, dstY1))
388 if (MAX2(dstY0, dstY1) < MIN2(srcY0, srcY1))
433 int dstX1, int dstY1,
464 dstX0, dstY0, dstX1, dstY1);
491 dstY0 < dstY1 &&
493 (dstY1 - dstY0) == (srcY1 - srcY0) &&
560 dstY0 = dstY1;
561 dstY1 = tmp;
773 (float) dstY1 / dst_surface->height * 2.0f - 1.0f
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 145 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
160 &dstX0, &dstY0, &dstX1, &dstY1)) {
167 dstY1 = drawFB->Height - dstY1;
196 if (dstY0 < dstY1) {
198 info.dst.y1 = dstY1;
202 info.dst.y0 = dstY1;
213 if (srcY0 > srcY1 && dstY0 > dstY1) {
223 dstY0 = dstY1;
224 dstY1 = tmp
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blit.c 110 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
118 const GLint dstHeight = ABS(dstY1 - dstY0);
123 const GLint dstYpos = MIN2(dstY0, dstY1);
126 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0);
490 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1)
498 const GLint dstHeight = ABS(dstY1 - dstY0);
504 const GLint dstYpos = MIN2(dstY0, dstY1);
507 const GLboolean invertY = (srcY1 < srcY0) ^ (dstY1 < dstY0);
714 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
730 &dstX0, &dstY0, &dstX1, &dstY1)) {
    [all...]
swrast.h 157 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_blorp_blit.cpp 149 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
166 srcX0, srcY0, dstX0, dstY0, dstX1, dstY1,
194 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
212 fixup_mirroring(mirror_y, dstY0, dstY1);
216 if (srcY1 - srcY0 != dstY1 - dstY0) return false;
222 clip_or_scissor(mirror_y, srcY0, srcY1, dstY0, dstY1,
231 clip_or_scissor(mirror_y, dstY0, dstY1, srcY0, srcY1,
248 dstY0 = draw_fb->Height - dstY1;
249 dstY1 = tmp;
267 dstX0, dstY0, dstX1, dstY1, mirror_x, mirror_y)
    [all...]
  /external/mesa3d/src/mesa/main/
image.c 857 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1)
874 *srcY0, *srcY1, *dstY0, *dstY1);
885 if (*dstY0 == *dstY1)
887 if (*dstY0 <= dstYmin && *dstY1 <= dstYmin)
889 if (*dstY0 >= dstYmax && *dstY1 >= dstYmax)
910 clip_right_or_top(srcY0, srcY1, dstY0, dstY1, dstYmax);
912 clip_left_or_bottom(srcY0, srcY1, dstY0, dstY1, dstYmin);
918 clip_right_or_top(dstY0, dstY1, srcY0, srcY1, srcYmax);
920 clip_left_or_bottom(dstY0, dstY1, srcY0, srcY1, srcYmin);
926 *srcY0, *srcY1, *dstY0, *dstY1);
    [all...]
image.h 131 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
fbobject.h 205 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
fbobject.c     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.h 79 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
meta.c     [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_fbo.c 809 GLint dstX1, GLint dstY1,
827 srcY0 - srcY1 == dstY0 - dstY1 &&
833 dstY0 >= 0 && dstY1 <= drawFb->Height &&
859 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
865 dstX0, dstY0, dstX1, dstY1,
873 dstX0, dstY0, dstX1, dstY1,
881 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/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 86 public native void glBlitFramebuffer(int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, int mask, int filter);
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSGLES30.java 70 public native void glBlitFramebuffer(int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1, int mask, int filter);
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.c     [all...]
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidGL30.java 231 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
233 GLES30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
  /external/skia/src/gpu/gl/
GrGLNoOpInterface.h 337 GrGLint dstY1,
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGL30.java 217 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
219 GL30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3GL30.java 219 public void glBlitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
221 GL30.glBlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 29 void glBlitFramebuffer ( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter )

Completed in 1814 milliseconds

1 2 3 4 5 6