We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c154fc0 commit a55b742Copy full SHA for a55b742
src/private/dbackdropnode.cpp
@@ -668,10 +668,13 @@ class Q_DECL_HIDDEN RhiNode : public DBackdropNode {
668
}
669
670
RenderingFlags flags() const override {
671
+ // FIXME: shoule we support DepthAwareRendering?
672
+ // When enable DepthAwareRendering, render buffer node may have a wrong order.
673
+ // Disable DepthAwareRendering here.
674
if (Q_UNLIKELY(!contentNode))
- return BoundedRectRendering | DepthAwareRendering;
675
+ return BoundedRectRendering;
676
- return DepthAwareRendering;
677
+ return {};
678
679
680
void releaseResources() override {
0 commit comments