Home
last modified time | relevance | path

Searched refs:isMultiview (Results 1 – 15 of 15) sorted by relevance

/external/angle/src/libANGLE/
DFramebuffer.cpp56 if (firstAttachment->isMultiview() != secondAttachment->isMultiview()) in CheckMultiviewStateMatchesForCompleteness()
735 bool FramebufferState::isMultiview() const in isMultiview() function in gl::FramebufferState
742 return attachment->isMultiview(); in isMultiview()
1795 bool isMultiview, in setAttachment() argument
1813 isMultiview, samples); in setAttachment()
1823 isMultiview, samples, mState.mFramebufferSerial); in setAttachment()
1828 numViews, baseViewIndex, isMultiview, samples, in setAttachment()
1834 numViews, baseViewIndex, isMultiview, samples, in setAttachment()
1839 baseViewIndex, isMultiview, samples); in setAttachment()
1843 commitWebGL1DepthStencilIfConsistent(context, numViews, baseViewIndex, isMultiview, samples); in setAttachment()
[all …]
DFramebuffer.h117 bool isMultiview() const;
259 bool isMultiview() const;
452 bool isMultiview,
457 bool isMultiview,
466 bool isMultiview,
478 bool isMultiview,
DFramebufferAttachment.cpp117 bool isMultiview, in attach() argument
131 mIsMultiview = isMultiview; in attach()
215 bool FramebufferAttachment::isMultiview() const in isMultiview() function in gl::FramebufferAttachment
DFramebufferAttachment.h78 bool isMultiview,
117 bool isMultiview() const;
DvalidationES.cpp1653 if (drawFramebuffer->isMultiview()) in ValidateBlitFramebufferParameters()
/external/angle/src/compiler/translator/
DTranslatorESSL.cpp128 const bool isMultiview = (iter->first == TExtension::OVR_multiview) || in writeExtensionBehavior() local
141 else if (isMultiview) in writeExtensionBehavior()
DTranslatorGLSL.cpp289 const bool isMultiview = in writeExtensionBehavior() local
291 if (isMultiview) in writeExtensionBehavior()
/external/angle/src/libANGLE/renderer/gl/
DClearMultiviewGL.cpp43 if (firstAttachment->isMultiview()) in clearMultiviewFBO()
63 ASSERT(firstAttachment->isMultiview()); in clearLayeredFBO()
DFramebufferGL.cpp139 if (attachment->isMultiview()) in BindFramebufferAttachment()
200 if (!colorAttachment.isMultiview()) in RequiresMultiviewClear()
213 if (!depthAttachment->isMultiview()) in RequiresMultiviewClear()
224 if (!stencilAttachment->isMultiview()) in RequiresMultiviewClear()
237 if (attachment->isMultiview()) in RequiresMultiviewClear()
DStateManagerGL.cpp2464 if (drawFramebufferState.isMultiview()) in updateMultiviewBaseViewLayerIndexUniformImpl()
/external/angle/src/libANGLE/renderer/vulkan/
DFramebufferVk.cpp1370 const bool isMultiview = mState.isMultiview(); in updateLayerCount() local
1371 if (isMultiview) in updateLayerCount()
1377 mCurrentFramebufferDesc.updateIsMultiview(isMultiview); in updateLayerCount()
1934 mRenderPassDesc.setViewCount(mState.isMultiview() ? mState.getNumViews() : 0); in updateRenderPassDesc()
2122 if (!mCurrentFramebufferDesc.isMultiview()) in getFramebuffer()
2221 ASSERT(mCurrentFramebufferDesc.isMultiview() || colorRenderTarget->getLayerCount() == 1); in clearWithDraw()
Dvk_cache_utils.h1199 void updateIsMultiview(bool isMultiview) { mIsMultiview = isMultiview; } in updateIsMultiview() argument
1223 bool isMultiview() const { return mIsMultiview; } in isMultiview() function
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DClear11.cpp728 const bool hasLayeredLayout = (fboData.isMultiview()); in clearFramebuffer()
DStateManager11.cpp1222 if (drawFramebuffer->isMultiview()) in handleMultiviewDrawFramebufferChange()
/external/angle/src/libANGLE/capture/
Dframe_capture_utils.cpp401 json->addScalar("Multiview", framebufferAttachment.isMultiview()); in SerializeFramebufferAttachment()