Searched defs:srcX0 (Results 26 - 45 of 45) sorted by relevance

12

/external/mesa3d/src/mesa/main/
H A Dfbobject.c2879 _mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, argument
2896 srcX0, srcY0, srcX1, srcY1,
3028 if (abs(srcX1 - srcX0) != abs(dstX1 - dstX0) ||
3067 srcX0, srcY0, srcX1, srcY1,
3107 srcX0, srcY0, srcX1, srcY1,
H A Ddlist.c6359 save_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, argument
6368 n[1].i = srcX0;
6380 CALL_BlitFramebufferEXT(ctx->Exec, (srcX0, srcY0, srcX1, srcY1,
/external/skia/src/gpu/gl/
H A DGrGLNoOpInterface.cpp394 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBlitFramebuffer(GrGLint srcX0, argument
/external/chromium_org/ppapi/lib/gl/gles2/
H A Dgles2.c761 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
767 glGetCurrentContextPPAPI(), srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, local
760 glBlitFramebufferEXT( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppb_opengles2_shared.cc747 PP_Resource context_id, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
752 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask,
746 BlitFramebufferEXT( PP_Resource context_id, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
/external/chromium_org/third_party/WebKit/Source/core/tests/
H A DFakeWebGraphicsContext3D.h73 virtual void blitFramebufferCHROMIUM(WGC3Dint srcX0, WGC3Dint srcY0, WGC3Dint srcX1, WGC3Dint srcY1, WGC3Dint dstX0, WGC3Dint dstY0, WGC3Dint dstX1, WGC3Dint dstY1, WGC3Dbitfield mask, WGC3Denum filter) { } argument
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_c_lib_autogen.h513 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
516 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
512 GLES2BlitFramebufferEXT( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
H A Dgles2_cmd_helper_autogen.h1559 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
1565 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask,
1558 BlitFramebufferEXT( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
H A Dgles2_trace_implementation_impl_autogen.h842 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
846 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
841 BlitFramebufferEXT( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/
H A DContext.cpp2658 void Context::blitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, argument
2693 if (srcX0 < srcX1)
2695 sourceRect.x = srcX0;
2697 sourceRect.width = srcX1 - srcX0;
2704 sourceRect.width = srcX0 - srcX1;
H A DlibGLESv2.cpp6824 void __stdcall glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, argument
6827 EVENT("(GLint srcX0 = %d, GLint srcY0 = %d, GLint srcX1 = %d, GLint srcY1 = %d, "
6830 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter);
6847 if (srcX1 - srcX0 != dstX1 - dstX0 || srcY1 - srcY0 != dstY1 - dstY0)
6863 context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
H A Dmeta.c1430 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1510 s0 = srcX0 / (float) texImage->Width;
1517 s0 = srcX0;
1575 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1582 const GLint srcX = MIN2(srcX0, srcX1);
1584 const GLint srcW = abs(srcX1 - srcX0);
1586 const GLboolean srcFlipX = srcX1 < srcX0;
1601 _swrast_BlitFramebuffer(ctx, srcX0, srcY0, srcX1, srcY1,
1646 mask = blitframebuffer_texture(ctx, srcX0, srcY0, srcX1, srcY1,
1730 _swrast_BlitFramebuffer(ctx, srcX0, srcY
1429 blitframebuffer_texture(struct gl_context *ctx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
1574 _mesa_meta_BlitFramebuffer(struct gl_context *ctx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c1430 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1510 s0 = srcX0 / (float) texImage->Width;
1517 s0 = srcX0;
1575 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
1582 const GLint srcX = MIN2(srcX0, srcX1);
1584 const GLint srcW = abs(srcX1 - srcX0);
1586 const GLboolean srcFlipX = srcX1 < srcX0;
1601 _swrast_BlitFramebuffer(ctx, srcX0, srcY0, srcX1, srcY1,
1646 mask = blitframebuffer_texture(ctx, srcX0, srcY0, srcX1, srcY1,
1730 _swrast_BlitFramebuffer(ctx, srcX0, srcY
1429 blitframebuffer_texture(struct gl_context *ctx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
1574 _mesa_meta_BlitFramebuffer(struct gl_context *ctx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc1184 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
5007 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1,
5024 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
5027 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
5006 DoBlitFramebufferEXT( GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddlist.c6359 save_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, argument
6368 n[1].i = srcX0;
6380 CALL_BlitFramebufferEXT(ctx->Exec, (srcX0, srcY0, srcX1, srcY1,
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dindirect.c8540 void __indirect_glBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
8545 (void) memcpy((void *)(gc->pc + 4), (void *)(&srcX0), 4);
H A Dglapi_mapi_tmp.h1266 void APIENTRY GLAPI_PREFIX(_dispatch_stub_955)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
1267 GLAPI void APIENTRY GLAPI_PREFIX(BlitFramebuffer)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
9534 GLAPI void APIENTRY GLAPI_PREFIX(BlitFramebuffer)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
9538 ((void (APIENTRY *)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)) _func)(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
H A Dglapi_mapi_tmp_shared.h969 void APIENTRY shared_dispatch_stub_955(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
6802 static void APIENTRY noopBlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
6804 (void) srcX0; (void) srcY0; (void) srcX1; (void) srcY1; (void) dstX0; (void) dstY0; (void) dstX1; (void) dstY1; (void) mask; (void) filter;
19488 void APIENTRY shared_dispatch_stub_955(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
19492 ((void (APIENTRY *)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)) _func)(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format_autogen.h8358 srcX0 = _srcX0;
8382 int32 srcX0; member in struct:BlitFramebufferEXT
8398 COMPILE_ASSERT(offsetof(BlitFramebufferEXT, srcX0) == 4,
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
H A Dglapitemp.h7224 KEYWORD1 void KEYWORD2 NAME(BlitFramebuffer)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
7226 (void) srcX0; (void) srcY0; (void) srcX1; (void) srcY1; (void) dstX0; (void) dstY0; (void) dstX1; (void) dstY1; (void) mask; (void) filter;
7227 DISPATCH(BlitFramebufferEXT, (srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter), (F, "glBlitFramebuffer(%d, %d, %d, %d, %d, %d, %d, %d, %d, 0x%x);\n", srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter));
7230 KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_896)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
7232 KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_896)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) argument
7234 (void) srcX0; (void) srcY0; (void) srcX1; (void) srcY1; (void) dstX0; (void) dstY0; (void) dstX1; (void) dstY1; (void) mask; (void) filter;
7235 DISPATCH(BlitFramebufferEXT, (srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter), (F, "glBlitFramebufferEXT(%d, %d, %d, %d, %d, %d, %d, %d, %d, 0x%x);\n", srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter));

Completed in 4852 milliseconds

12