@@ -1944,6 +1944,58 @@ TEST_P(VulkanPerformanceCounterTest, DepthStencilMaskedDrawThenClear)
1944
1944
getPerfCounters ().depthClearAttachments );
1945
1945
}
1946
1946
1947
+ // Tests that depth compare function change, get correct loadop for depth buffer
1948
+ //
1949
+ // - Scenario: depth test enabled, depth write mask = 0,
1950
+ // clear depth, draw red quad with compare function always,
1951
+ // and then draw green quad with compare function less equal
1952
+ TEST_P (VulkanPerformanceCounterTest, DepthFunctionDynamicChangeLoadOp)
1953
+ {
1954
+ ANGLE_SKIP_TEST_IF (!IsGLExtensionEnabled (kPerfMonitorExtensionName ));
1955
+
1956
+ // This optimization is not implemented when this workaround is in effect.
1957
+ ANGLE_SKIP_TEST_IF (hasPreferDrawOverClearAttachments ());
1958
+
1959
+ angle::VulkanPerfCounters expected;
1960
+
1961
+ // Expect rpCount+1, depth(Clears+1, Loads+0, LoadNones+0, Stores+0, StoreNones+0),
1962
+ setExpectedCountersForDepthOps (getPerfCounters (), 1 , 1 , 0 , 0 , 0 , 0 , &expected);
1963
+
1964
+ GLFramebuffer framebuffer;
1965
+ GLTexture texture;
1966
+ GLRenderbuffer renderbuffer;
1967
+ setupForColorDepthOpsTest (&framebuffer, &texture, &renderbuffer);
1968
+
1969
+ // Clear color and depth.
1970
+ glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
1971
+
1972
+ // No depth write
1973
+ glDepthMask (GL_FALSE);
1974
+ // Depth function always
1975
+ glDepthFunc (GL_ALWAYS);
1976
+
1977
+ // Draw read quad.
1978
+ ANGLE_GL_PROGRAM (redprogram, essl1_shaders::vs::Simple (), essl1_shaders::fs::Red ());
1979
+ drawQuad (redprogram, essl1_shaders::PositionAttrib (), 0 .5f );
1980
+
1981
+ // Depth function switch to less equal
1982
+ glDepthFunc (GL_LEQUAL);
1983
+
1984
+ // Draw green quad.
1985
+ ANGLE_GL_PROGRAM (greenprogram, essl1_shaders::vs::Simple (), essl1_shaders::fs::Green ());
1986
+ drawQuad (greenprogram, essl1_shaders::PositionAttrib (), 0 .7f );
1987
+
1988
+ GLenum attachments = GL_DEPTH_ATTACHMENT;
1989
+ glInvalidateFramebuffer (GL_FRAMEBUFFER, 1 , &attachments);
1990
+
1991
+ EXPECT_EQ (expected.renderPasses , getPerfCounters ().renderPasses );
1992
+
1993
+ // Break the render pass and check how many clears were actually done
1994
+ EXPECT_PIXEL_COLOR_EQ (0 , 0 , GLColor::green);
1995
+ EXPECT_CLEAR_ATTACHMENTS_COUNTER (expected.depthLoadOpClears ,
1996
+ getPerfCounters ().depthLoadOpClears );
1997
+ }
1998
+
1947
1999
// Tests that common PUBG MOBILE case does not break render pass, and that counts are correct:
1948
2000
//
1949
2001
// - Scenario: invalidate, disable, draw
0 commit comments