Home
last modified time | relevance | path

Searched refs:drawFramebuffer (Results 1 – 25 of 39) sorted by relevance

12

/third_party/mesa3d/src/mesa/main/
Dblit.c928 GLuint readFramebuffer, GLuint drawFramebuffer, in blit_named_framebuffer() argument
956 if (drawFramebuffer) { in blit_named_framebuffer()
958 drawFb = _mesa_lookup_framebuffer(ctx, drawFramebuffer); in blit_named_framebuffer()
960 drawFb = _mesa_lookup_framebuffer_err(ctx, drawFramebuffer, in blit_named_framebuffer()
978 GLuint drawFramebuffer, in _mesa_BlitNamedFramebuffer_no_error() argument
987 blit_named_framebuffer(ctx, readFramebuffer, drawFramebuffer, in _mesa_BlitNamedFramebuffer_no_error()
995 _mesa_BlitNamedFramebuffer(GLuint readFramebuffer, GLuint drawFramebuffer, in _mesa_BlitNamedFramebuffer() argument
1006 readFramebuffer, drawFramebuffer, in _mesa_BlitNamedFramebuffer()
1011 blit_named_framebuffer(ctx, readFramebuffer, drawFramebuffer, in _mesa_BlitNamedFramebuffer()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DContext.cpp757 return mState.drawFramebuffer; in getDrawFramebufferName()
781 Framebuffer *drawFramebuffer = getDrawFramebuffer(); in setFramebufferDrawBuffers() local
783 if(drawFramebuffer) in setFramebufferDrawBuffers()
787 drawFramebuffer->setDrawBuffer(i, (i < n) ? bufs[i] : GL_NONE); in setFramebufferDrawBuffers()
1140 return getFramebuffer(mState.drawFramebuffer); in getDrawFramebuffer()
1230 mState.drawFramebuffer = framebuffer; in bindDrawFramebuffer()
1975 …case GL_DRAW_FRAMEBUFFER_BINDING: *params = mState.drawFramebuffer; return t… in getIntegerv()
3911 Framebuffer *drawFramebuffer = getDrawFramebuffer(); in detachTexture() local
3918 if(drawFramebuffer && drawFramebuffer != readFramebuffer) in detachTexture()
3920 drawFramebuffer->detachTexture(texture); in detachTexture()
[all …]
DContext.h387 GLuint drawFramebuffer; member
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.h660 const gl::Framebuffer *drawFramebuffer);
665 const gl::Framebuffer *drawFramebuffer);
668 const gl::Framebuffer *drawFramebuffer);
681 const gl::Framebuffer *drawFramebuffer);
684 const gl::Framebuffer *drawFramebuffer);
DContextVk.cpp167 uint32_t GetCoverageSampleCount(const gl::State &glState, FramebufferVk *drawFramebuffer) in GetCoverageSampleCount() argument
186 return static_cast<uint32_t>(glState.getSampleCoverageValue() * drawFramebuffer->getSamples()); in GetCoverageSampleCount()
3422 FramebufferVk *drawFramebuffer = vk::GetImpl(mState.getDrawFramebuffer()); in updateSampleMaskWithRasterizationSamples() local
3426 uint32_t coverageSampleCount = GetCoverageSampleCount(mState, drawFramebuffer); in updateSampleMaskWithRasterizationSamples()
3557 gl::Framebuffer *drawFramebuffer = mState.getDrawFramebuffer(); in updateDepthStencil() local
3559 drawFramebuffer); in updateDepthStencil()
3561 drawFramebuffer); in updateDepthStencil()
3563 drawFramebuffer); in updateDepthStencil()
3565 depthStencilState, drawFramebuffer); in updateDepthStencil()
3567 depthStencilState, drawFramebuffer); in updateDepthStencil()
[all …]
Dvk_cache_utils.cpp2488 const gl::Framebuffer *drawFramebuffer) in updateDepthTestEnabled() argument
2492 setDepthTestEnabled(depthStencilState.depthTest && drawFramebuffer->hasDepth()); in updateDepthTestEnabled()
2515 const gl::Framebuffer *drawFramebuffer) in updateDepthWriteEnabled() argument
2519 drawFramebuffer->hasDepth() && depthStencilState.depthTest && depthStencilState.depthMask; in updateDepthWriteEnabled()
2529 const gl::Framebuffer *drawFramebuffer) in updateStencilTestEnabled() argument
2533 setStencilTestEnabled(depthStencilState.stencilTest && drawFramebuffer->hasStencil()); in updateStencilTestEnabled()
2580 const gl::Framebuffer *drawFramebuffer) in updateStencilFrontWriteMask() argument
2584 drawFramebuffer->hasStencil() ? depthStencilState.stencilWritemask : 0)); in updateStencilFrontWriteMask()
2591 const gl::Framebuffer *drawFramebuffer) in updateStencilBackWriteMask() argument
2595 drawFramebuffer->hasStencil() ? depthStencilState.stencilBackWritemask : 0)); in updateStencilBackWriteMask()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DvalidationES.cpp1506 Framebuffer *drawFramebuffer = glState.getDrawFramebuffer(); in ValidateBlitFramebufferParameters() local
1508 if (!readFramebuffer || !drawFramebuffer) in ValidateBlitFramebufferParameters()
1520 if (!ValidateFramebufferComplete(context, entryPoint, drawFramebuffer)) in ValidateBlitFramebufferParameters()
1527 (readFramebuffer->hasYUVAttachment() || drawFramebuffer->hasYUVAttachment())) in ValidateBlitFramebufferParameters()
1536 if ((readFramebuffer->id() == drawFramebuffer->id()) && in ValidateBlitFramebufferParameters()
1537 ((drawFramebuffer->id() != Framebuffer::kDefaultDrawFramebufferHandle) || in ValidateBlitFramebufferParameters()
1546 if (!ValidateFramebufferNotMultisampled(context, entryPoint, drawFramebuffer, false)) in ValidateBlitFramebufferParameters()
1572 drawbufferIdx < drawFramebuffer->getDrawbufferStateCount(); ++drawbufferIdx) in ValidateBlitFramebufferParameters()
1575 drawFramebuffer->getDrawBuffer(drawbufferIdx); in ValidateBlitFramebufferParameters()
1657 else if (drawFramebuffer->hasEnabledDrawBuffer()) in ValidateBlitFramebufferParameters()
[all …]
DState.cpp1770 Framebuffer *drawFramebuffer = mDrawFramebuffer; in detachRenderbuffer() local
1777 if (drawFramebuffer && drawFramebuffer != readFramebuffer) in detachRenderbuffer()
1779 if (drawFramebuffer->detachRenderbuffer(context, renderbuffer)) in detachRenderbuffer()
DvalidationGL45_autogen.h23 GLuint drawFramebuffer,
DvalidationES2.cpp2436 Framebuffer *drawFramebuffer = context->getState().getDrawFramebuffer(); in ValidateBlitFramebufferANGLE() local
2443 drawFramebuffer->getFirstColorAttachment(); in ValidateBlitFramebufferANGLE()
2460 drawbufferIdx < drawFramebuffer->getDrawbufferStateCount(); ++drawbufferIdx) in ValidateBlitFramebufferANGLE()
2463 drawFramebuffer->getDrawBuffer(drawbufferIdx); in ValidateBlitFramebufferANGLE()
2510 drawFramebuffer->getAttachment(context, attachments[i]); in ValidateBlitFramebufferANGLE()
DContext_gl_4_autogen.h161 void blitNamedFramebuffer(GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, \
DContext.cpp4185 Framebuffer *drawFramebuffer = mState.getDrawFramebuffer(); in blitFramebuffer() local
4186 ASSERT(drawFramebuffer); in blitFramebuffer()
4190 if ((mask & GL_COLOR_BUFFER_BIT) && !drawFramebuffer->hasEnabledDrawBuffer()) in blitFramebuffer()
4196 drawFramebuffer->getState().getStencilAttachment() == nullptr) in blitFramebuffer()
4201 if ((mask & GL_DEPTH_BUFFER_BIT) && drawFramebuffer->getState().getDepthAttachment() == nullptr) in blitFramebuffer()
4224 ANGLE_CONTEXT_TRY(drawFramebuffer->blit(this, srcArea, dstArea, mask, filter)); in blitFramebuffer()
DvalidationGL4_autogen.h625 GLuint drawFramebuffer,
DvalidationGL4.cpp1003 GLuint drawFramebuffer, in ValidateBlitNamedFramebuffer() argument
DContext_gl.cpp2842 GLuint drawFramebuffer, in blitNamedFramebuffer() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp1147 gl::Framebuffer *drawFramebuffer = glState.getDrawFramebuffer(); in setBlendDepthRasterStates() local
1148 ASSERT(!drawFramebuffer->hasAnyDirtyBit()); in setBlendDepthRasterStates()
1154 drawFramebuffer->getFirstColorAttachment(); in setBlendDepthRasterStates()
1763 const gl::Framebuffer *drawFramebuffer = state.getDrawFramebuffer(); in applyShaders() local
1764 programD3D->updateCachedOutputLayout(context, drawFramebuffer); in applyShaders()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DBlitFramebufferANGLETest.cpp322 void multisampleTestHelper(GLuint readFramebuffer, GLuint drawFramebuffer) in multisampleTestHelper() argument
330 glBindFramebuffer(GL_DRAW_FRAMEBUFFER, drawFramebuffer); in multisampleTestHelper()
335 glBindFramebuffer(GL_READ_FRAMEBUFFER, drawFramebuffer); in multisampleTestHelper()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DStateManager11.cpp1244 const gl::Framebuffer *drawFramebuffer = glState.getDrawFramebuffer(); in handleMultiviewDrawFramebufferChange() local
1245 ASSERT(drawFramebuffer != nullptr); in handleMultiviewDrawFramebufferChange()
1247 if (drawFramebuffer->isMultiview()) in handleMultiviewDrawFramebufferChange()
/third_party/skia/third_party/externals/angle2/src/libGL/
Dentry_points_gl_4_autogen.h676 GLuint drawFramebuffer,
Dentry_points_gl_4_autogen.cpp6008 GLuint drawFramebuffer, in GL_BlitNamedFramebuffer() argument
6025 CID(context), readFramebuffer, drawFramebuffer, srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, in GL_BlitNamedFramebuffer()
6035 readFramebuffer, drawFramebuffer, srcX0, srcY0, srcX1, in GL_BlitNamedFramebuffer()
6039 context->blitNamedFramebuffer(readFramebuffer, drawFramebuffer, srcX0, srcY0, srcX1, in GL_BlitNamedFramebuffer()
6042 ANGLE_CAPTURE(BlitNamedFramebuffer, isCallValid, context, readFramebuffer, drawFramebuffer, in GL_BlitNamedFramebuffer()
DlibGL_autogen.cpp5427 GLuint drawFramebuffer, in glBlitNamedFramebuffer() argument
5439 return GL_BlitNamedFramebuffer(readFramebuffer, drawFramebuffer, srcX0, srcY0, srcX1, srcY1, in glBlitNamedFramebuffer()
/third_party/openGLES/extensions/ARB/
DARB_direct_state_access.txt229 uint drawFramebuffer,
2804 void BlitNamedFramebuffer(uint readFramebuffer, uint drawFramebuffer,
2813 BlitNamedFramebuffer, <readFramebuffer> and <drawFramebuffer> are the
2817 BlitFramebuffer), or if <readFramebuffer> or <drawFramebuffer> is zero
2829 <readFramebuffer> or <drawFramebuffer> is not zero or the name of an
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_direct_state_access.txt219 uint drawFramebuffer,
2773 void BlitNamedFramebuffer(uint readFramebuffer, uint drawFramebuffer,
2782 BlitNamedFramebuffer, <readFramebuffer> and <drawFramebuffer> are the
2786 BlitFramebuffer), or if <readFramebuffer> or <drawFramebuffer> is zero
2798 <readFramebuffer> or <drawFramebuffer> is not zero or the name of an
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Dnull_functions.h128 GLuint drawFramebuffer,
Dnull_functions.cpp177 GLuint drawFramebuffer, in glBlitNamedFramebufferNULL() argument

12