Skip to content

Commit 7189e4c

Browse files
Hailin ZhangAngle LUCI CQ
Hailin Zhang
authored and
Angle LUCI CQ
committed
vulkan: fix depth buffer renderpass loadOp issue.
when change the depth compare function, Renderpass need to change the mAcess flag accordingly. Bug: b/269929460 Change-Id: I83826c1b07c6d22600d6cd039e7d8bfd0b5b39c3 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4284624 Reviewed-by: Shahbaz Youssefi <[email protected]> Commit-Queue: Hailin Zhang <[email protected]>
1 parent 05bb784 commit 7189e4c

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

src/libANGLE/renderer/vulkan/ContextVk.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -5169,6 +5169,7 @@ angle::Result ContextVk::syncState(const gl::Context *context,
51695169
break;
51705170
case gl::State::DIRTY_BIT_DEPTH_FUNC:
51715171
updateDepthFunc(glState);
5172+
onDepthStencilAccessChange();
51725173
break;
51735174
case gl::State::DIRTY_BIT_DEPTH_MASK:
51745175
updateDepthWriteEnabled(glState);

src/tests/gl_tests/VulkanPerformanceCounterTest.cpp

+52
Original file line numberDiff line numberDiff line change
@@ -1944,6 +1944,58 @@ TEST_P(VulkanPerformanceCounterTest, DepthStencilMaskedDrawThenClear)
19441944
getPerfCounters().depthClearAttachments);
19451945
}
19461946

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+
19471999
// Tests that common PUBG MOBILE case does not break render pass, and that counts are correct:
19482000
//
19492001
// - Scenario: invalidate, disable, draw

0 commit comments

Comments
 (0)