Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
DFramebufferVk.cpp2993 ASSERT(mCurrentFramebufferDesc.hasColorFramebufferFetch() == in getFramebuffer()
2994 mRenderPassDesc.hasColorFramebufferFetch()); in getFramebuffer()
3045 mRenderPassDesc.hasColorFramebufferFetch() ? vk::FramebufferFetchMode::Color in getFramebuffer()
3905 bool hasColorFramebufferFetch) in switchToColorFramebufferFetchMode() argument
3912 if (mCurrentFramebufferDesc.hasColorFramebufferFetch() == hasColorFramebufferFetch) in switchToColorFramebufferFetchMode()
3917 mCurrentFramebufferDesc.setColorFramebufferFetchMode(hasColorFramebufferFetch); in switchToColorFramebufferFetchMode()
3919 mRenderPassDesc.setFramebufferFetchMode(hasColorFramebufferFetch in switchToColorFramebufferFetchMode()
3930 ASSERT(hasColorFramebufferFetch); in switchToColorFramebufferFetchMode()
DFramebufferVk.h140 void switchToColorFramebufferFetchMode(ContextVk *contextVk, bool hasColorFramebufferFetch);
Dvk_cache_utils.h281 bool hasColorFramebufferFetch() const in hasColorFramebufferFetch() function
998 return mSharedNonVertexInput.renderPass.hasColorFramebufferFetch(); in getRenderPassColorFramebufferFetchMode()
2180 void setColorFramebufferFetchMode(bool hasColorFramebufferFetch);
2181 bool hasColorFramebufferFetch() const { return mHasColorFramebufferFetch; } in hasColorFramebufferFetch() function
Dvk_cache_utils.cpp594 if (desc.hasColorFramebufferFetch() && shadersSource == ShadersStateSource::ThisPipeline && in AttachPipelineRenderingInfo()
599 if (desc.hasColorFramebufferFetch()) in AttachPipelineRenderingInfo()
1882 renderPass.hasColorFramebufferFetch(); in UnpackPipelineState()
2729 const bool hasColorFramebufferFetch = executable->usesColorFramebufferFetch(); in GetProgramFramebufferFetchMode() local
2735 return hasColorFramebufferFetch ? FramebufferFetchMode::ColorAndDepthStencil in GetProgramFramebufferFetchMode()
2740 return hasColorFramebufferFetch ? FramebufferFetchMode::Color : FramebufferFetchMode::None; in GetProgramFramebufferFetchMode()
3001 if (hasColorFramebufferFetch()) in beginRendering()
5430 void FramebufferDesc::setColorFramebufferFetchMode(bool hasColorFramebufferFetch) in setColorFramebufferFetchMode() argument
5432 SetBitField(mHasColorFramebufferFetch, hasColorFramebufferFetch); in setColorFramebufferFetchMode()
7537 const bool needInputAttachments = desc.hasColorFramebufferFetch(); in MakeRenderPass()
[all …]
DContextVk.cpp5425 const bool hasColorFramebufferFetch = in invalidateProgramExecutableHelper() local
5445 if (mIsInColorFramebufferFetchMode != hasColorFramebufferFetch) in invalidateProgramExecutableHelper()
5447 ASSERT(getDrawFramebuffer()->getRenderPassDesc().hasColorFramebufferFetch() == in invalidateProgramExecutableHelper()
5450 ANGLE_TRY(switchToColorFramebufferFetchMode(hasColorFramebufferFetch)); in invalidateProgramExecutableHelper()
5470 hasColorFramebufferFetch) in invalidateProgramExecutableHelper()
5483 mGraphicsDirtyBits.set(DIRTY_BIT_FRAMEBUFFER_FETCH_BARRIER, hasColorFramebufferFetch); in invalidateProgramExecutableHelper()
9097 angle::Result ContextVk::switchToColorFramebufferFetchMode(bool hasColorFramebufferFetch) in switchToColorFramebufferFetchMode() argument
9108 ASSERT(mIsInColorFramebufferFetchMode != hasColorFramebufferFetch); in switchToColorFramebufferFetchMode()
9109 mIsInColorFramebufferFetchMode = hasColorFramebufferFetch; in switchToColorFramebufferFetchMode()
DContextVk.h791 angle::Result switchToColorFramebufferFetchMode(bool hasColorFramebufferFetch);
Dvk_helpers.cpp2630 mRenderPassDesc.hasColorFramebufferFetch()) in finalizeColorImageLayout()