Home
last modified time | relevance | path

Searched refs:hasColorFramebufferFetch (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/angle/src/libANGLE/renderer/vulkan/
H A DFramebufferVk.cpp2949 ASSERT(mCurrentFramebufferDesc.hasColorFramebufferFetch() == in getFramebuffer()
2950 mRenderPassDesc.hasColorFramebufferFetch()); in getFramebuffer()
3001 mRenderPassDesc.hasColorFramebufferFetch() ? vk::FramebufferFetchMode::Color in getFramebuffer()
3869 bool hasColorFramebufferFetch) in switchToColorFramebufferFetchMode() argument
3876 if (mCurrentFramebufferDesc.hasColorFramebufferFetch() == hasColorFramebufferFetch) in switchToColorFramebufferFetchMode()
3881 mCurrentFramebufferDesc.setColorFramebufferFetchMode(hasColorFramebufferFetch); in switchToColorFramebufferFetchMode()
3883 mRenderPassDesc.setFramebufferFetchMode(hasColorFramebufferFetch in switchToColorFramebufferFetchMode()
3894 ASSERT(hasColorFramebufferFetch); in switchToColorFramebufferFetchMode()
H A Dvk_cache_utils.h278 bool hasColorFramebufferFetch() const in hasColorFramebufferFetch() function
910 return mSharedNonVertexInput.renderPass.hasColorFramebufferFetch(); in getRenderPassColorFramebufferFetchMode()
2083 void setColorFramebufferFetchMode(bool hasColorFramebufferFetch);
2084 bool hasColorFramebufferFetch() const { return mHasColorFramebufferFetch; } in hasColorFramebufferFetch() function
H A DFramebufferVk.h131 void switchToColorFramebufferFetchMode(ContextVk *contextVk, bool hasColorFramebufferFetch);
H A Dvk_cache_utils.cpp576 if (desc.hasColorFramebufferFetch() && GraphicsPipelineHasShaders(subset)) in AttachPipelineRenderingInfo()
580 if (desc.hasColorFramebufferFetch()) in AttachPipelineRenderingInfo()
1862 renderPass.hasColorFramebufferFetch(); in UnpackPipelineState()
2779 const bool hasColorFramebufferFetch = executable->usesColorFramebufferFetch(); in GetProgramFramebufferFetchMode() local
2785 return hasColorFramebufferFetch ? FramebufferFetchMode::ColorAndDepthStencil in GetProgramFramebufferFetchMode()
2790 return hasColorFramebufferFetch ? FramebufferFetchMode::Color : FramebufferFetchMode::None; in GetProgramFramebufferFetchMode()
3058 if (hasColorFramebufferFetch()) in beginRendering()
5401 void FramebufferDesc::setColorFramebufferFetchMode(bool hasColorFramebufferFetch) in setColorFramebufferFetchMode() argument
5403 SetBitField(mHasColorFramebufferFetch, hasColorFramebufferFetch); in setColorFramebufferFetchMode()
7458 const bool needInputAttachments = desc.hasColorFramebufferFetch(); in MakeRenderPass()
[all …]
H A DContextVk.cpp5499 const bool hasColorFramebufferFetch = in invalidateProgramExecutableHelper() local
5519 if (mIsInColorFramebufferFetchMode != hasColorFramebufferFetch) in invalidateProgramExecutableHelper()
5521 ASSERT(getDrawFramebuffer()->getRenderPassDesc().hasColorFramebufferFetch() == in invalidateProgramExecutableHelper()
5524 ANGLE_TRY(switchToColorFramebufferFetchMode(hasColorFramebufferFetch)); in invalidateProgramExecutableHelper()
5544 hasColorFramebufferFetch) in invalidateProgramExecutableHelper()
5557 mGraphicsDirtyBits.set(DIRTY_BIT_FRAMEBUFFER_FETCH_BARRIER, hasColorFramebufferFetch); in invalidateProgramExecutableHelper()
9078 angle::Result ContextVk::switchToColorFramebufferFetchMode(bool hasColorFramebufferFetch) in switchToColorFramebufferFetchMode() argument
9089 ASSERT(mIsInColorFramebufferFetchMode != hasColorFramebufferFetch); in switchToColorFramebufferFetchMode()
9090 mIsInColorFramebufferFetchMode = hasColorFramebufferFetch; in switchToColorFramebufferFetchMode()
H A DContextVk.h804 angle::Result switchToColorFramebufferFetchMode(bool hasColorFramebufferFetch);
H A Dvk_helpers.cpp2545 mRenderPassDesc.hasColorFramebufferFetch()) in finalizeColorImageLayout()