We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9fefd9 commit 44e070eCopy full SHA for 44e070e
1 file changed
lib/API/VK/Device.cpp
@@ -1916,17 +1916,11 @@ class VulkanDevice : public offloadtest::Device {
1916
for (const Format F : RTFormats) {
1917
ColorAttachmentFormatDesc CA = {};
1918
CA.Fmt = F;
1919
- CA.Load = LoadAction::DontCare;
1920
- CA.Store = StoreAction::DontCare;
1921
PassDesc.ColorAttachments.push_back(CA);
1922
}
1923
if (DSFormat) {
1924
DepthStencilAttachmentFormatDesc DS = {};
1925
DS.Fmt = *DSFormat;
1926
- DS.DepthLoad = LoadAction::DontCare;
1927
- DS.DepthStore = StoreAction::DontCare;
1928
- DS.StencilLoad = LoadAction::DontCare;
1929
- DS.StencilStore = StoreAction::DontCare;
1930
PassDesc.DepthStencil = DS;
1931
1932
0 commit comments