Home
last modified time | relevance | path

Searched refs:dstX0 (Results 1 – 25 of 124) sorted by relevance

12345

/third_party/mesa3d/src/mesa/main/
Dblit.c79 int dstX0, int dstY0, in _mesa_regions_overlap() argument
82 if (MAX2(srcX0, srcX1) <= MIN2(dstX0, dstX1)) in _mesa_regions_overlap()
85 if (MAX2(dstX0, dstX1) <= MIN2(srcX0, srcX1)) in _mesa_regions_overlap()
359 GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, in do_blit_framebuffer() argument
370 GLint dstX0, dstY0, dstX1, dstY1; in do_blit_framebuffer() member
384 clip.dstX0 = dstX0; in do_blit_framebuffer()
397 &clip.dstX0, &clip.dstY0, &clip.dstX1, &clip.dstY1)) { in do_blit_framebuffer()
402 (dstX0 != clip.dstX0) || in do_blit_framebuffer()
416 blit.scissor.minx = MIN2(clip.dstX0, clip.dstX1); in do_blit_framebuffer()
418 blit.scissor.maxx = MAX2(clip.dstX0, clip.dstX1); in do_blit_framebuffer()
[all …]
Dimage.c682 GLint *dstX0, GLint *dstX1, in clip_right_or_top() argument
689 assert(*dstX0 < maxValue); /* X0 should be inside right edge */ in clip_right_or_top()
690 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_right_or_top()
697 else if (*dstX0 > maxValue) { in clip_right_or_top()
700 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_right_or_top()
703 *dstX0 = maxValue; in clip_right_or_top()
715 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom() argument
720 if (*dstX0 < minValue) { in clip_left_or_bottom()
723 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom()
726 *dstX0 = minValue; in clip_left_or_bottom()
[all …]
Dblit.h34 int dstX0, int dstY0,
Dimage.h129 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1);
/third_party/openGLES/extensions/EXT/
DEXT_framebuffer_blit_layers.txt45 int dstX0, int dstY0, int dstX1, int dstY1,
49 int srcLayer, int dstX0, int dstY0, int dstX1,
68 int srcY1, int dstX0, int dstY0, int dstX1, int dstY1,
80 int srcLayer, int dstX0, int dstY0, int dstX1, int dstY1,
DEXT_framebuffer_blit.txt67 int dstX0, int dstY0, int dstX1, int dstY1,
222 int dstX0, int dstY0, int dstX1, int dstY1,
231 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds
/third_party/mesa3d/src/gallium/auxiliary/postprocess/
Dpp_run.c46 int dstX0, int dstY0, in pp_blit() argument
66 blit.dst.box.x = dstX0; in pp_blit()
69 blit.dst.box.width = dstX1 - dstX0; in pp_blit()
Dpp_private.h106 int dstX0, int dstY0,
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DGLX_AMD_gpu_association.txt111 GLint srcX1, GLint srcY1, GLint dstX0,
364 GLint srcX1, GLint srcY1, GLint dstX0,
374 to the destination rectangle, bound by the locations (dstX0, dstY0)
390 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0>
391 <dstX0>, and <dstY0> are the same as those that apply for
DWGL_AMD_gpu_association.txt106 GLint srcX1, GLint srcY1, GLint dstX0,
350 GLint srcX1, GLint srcY1, GLint dstX0,
360 to the destination rectangle, bound by the locations (dstX0, dstY0)
376 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0>
377 <dstX0>, and <dstY0> are the same as those that apply for
/third_party/openGLES/extensions/AMD/
DGLX_AMD_gpu_association.txt111 GLint srcX1, GLint srcY1, GLint dstX0,
364 GLint srcX1, GLint srcY1, GLint dstX0,
374 to the destination rectangle, bound by the locations (dstX0, dstY0)
390 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0>
391 <dstX0>, and <dstY0> are the same as those that apply for
DWGL_AMD_gpu_association.txt106 GLint srcX1, GLint srcY1, GLint dstX0,
350 GLint srcX1, GLint srcY1, GLint dstX0,
360 to the destination rectangle, bound by the locations (dstX0, dstY0)
376 specified with <srcX0>, <srcY0>, <srcX1>, <srcY1>, <dstX0>, <dstY0>
377 <dstX0>, and <dstY0> are the same as those that apply for
/third_party/vk-gl-cts/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
608 << dstX0 << ", " << dstY0 << ", " << dstX1 << ", " << dstY1 << ", " in blitFramebuffer()
614 drawOffset.x()+dstX0, drawOffset.y()+dstY0, drawOffset.x()+dstX1, drawOffset.y()+dstY1, in blitFramebuffer()
DsglrGLContext.hpp149 …virtual void blitFramebuffer (int srcX0, int srcY0, int srcX1, int srcY1, int dstX0, int ds…
/third_party/skia/third_party/externals/angle2/extensions/
DANGLE_framebuffer_blit.txt58 int dstX0, int dstY0, int dstX1, int dstY1,
125 int dstX0, int dstY0, int dstX1, int dstY1,
134 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds
/third_party/skia/third_party/externals/opengl-registry/extensions/ANGLE/
DANGLE_framebuffer_blit.txt58 int dstX0, int dstY0, int dstX1, int dstY1,
125 int dstX0, int dstY0, int dstX1, int dstY1,
134 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds
/third_party/openGLES/extensions/ANGLE/
DANGLE_framebuffer_blit.txt58 int dstX0, int dstY0, int dstX1, int dstY1,
125 int dstX0, int dstY0, int dstX1, int dstY1,
134 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
Dentry_points.cpp943 …itFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… in glBlitFramebufferNV() argument
945 return gl::BlitFramebufferNV(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebufferNV()
948 …ramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… in glBlitFramebufferANGLE() argument
951 …return gl::BlitFramebufferANGLE(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filt… in glBlitFramebufferANGLE()
1115 …BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… in glBlitFramebuffer() argument
1117 return gl::BlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); in glBlitFramebuffer()
Dentry_points.h197 …void GL_APIENTRY BlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0
198 …ramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin…
248 …void GL_APIENTRY BlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, …
DlibGLESv2.hpp217 …tFramebufferNV)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin…
218 …amebufferANGLE)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin…
DlibGLESv2.cpp5644 …itFramebufferSW(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… in BlitFramebufferSW() argument
5649 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter); in BlitFramebufferSW()
5674 …context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, false, allo… in BlitFramebufferSW()
5678 void GL_APIENTRY BlitFramebufferNV(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,… in BlitFramebufferNV() argument
5680 BlitFramebufferSW(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter, true); in BlitFramebufferNV()
5683 …ramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLin… in BlitFramebufferANGLE() argument
5686 if(srcX1 - srcX0 != dstX1 - dstX0 || srcY1 - srcY0 != dstY1 - dstY0) in BlitFramebufferANGLE()
5692 BlitFramebufferSW(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter, false); in BlitFramebufferANGLE()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DTracePerfTest.cpp460 GLint dstX0, in BlitFramebufferMinimizedProc() argument
467 glBlitFramebuffer(srcX0, srcY0, srcX0 + 1, srcY0 + 1, dstX0, dstY0, dstX0 + 1, dstY0 + 1, mask, in BlitFramebufferMinimizedProc()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DvalidationES2.cpp46 GLint dstX0, in IsPartialBlit() argument
54 if (srcX0 != 0 || srcY0 != 0 || dstX0 != 0 || dstY0 != 0 || dstX1 != writeSize.width || in IsPartialBlit()
2409 GLint dstX0, in ValidateBlitFramebufferANGLE() argument
2422 if (srcX1 - srcX0 != dstX1 - dstX0 || srcY1 - srcY0 != dstY1 - dstY0) in ValidateBlitFramebufferANGLE()
2492 srcX1, srcY1, dstX0, dstY0, dstX1, dstY1)) in ValidateBlitFramebufferANGLE()
2515 dstX0, dstY0, dstX1, dstY1)) in ValidateBlitFramebufferANGLE()
2533 return ValidateBlitFramebufferParameters(context, entryPoint, srcX0, srcY0, srcX1, srcY1, dstX0, in ValidateBlitFramebufferANGLE()
2543 GLint dstX0, in ValidateBlitFramebufferNV() argument
2556 return ValidateBlitFramebufferParameters(context, entryPoint, srcX0, srcY0, srcX1, srcY1, dstX0, in ValidateBlitFramebufferNV()
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_framebuffer_blit.txt67 int dstX0, int dstY0, int dstX1, int dstY1,
222 int dstX0, int dstY0, int dstX1, int dstY1,
231 the locations (dstX0, dstY0) and (dstX1, dstY1). The lower bounds

12345