Skip to content

Commit 44e070e

Browse files
Remove initialization of irrelevant fields and use the defaults instead.
1 parent d9fefd9 commit 44e070e

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

lib/API/VK/Device.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,17 +1916,11 @@ class VulkanDevice : public offloadtest::Device {
19161916
for (const Format F : RTFormats) {
19171917
ColorAttachmentFormatDesc CA = {};
19181918
CA.Fmt = F;
1919-
CA.Load = LoadAction::DontCare;
1920-
CA.Store = StoreAction::DontCare;
19211919
PassDesc.ColorAttachments.push_back(CA);
19221920
}
19231921
if (DSFormat) {
19241922
DepthStencilAttachmentFormatDesc DS = {};
19251923
DS.Fmt = *DSFormat;
1926-
DS.DepthLoad = LoadAction::DontCare;
1927-
DS.DepthStore = StoreAction::DontCare;
1928-
DS.StencilLoad = LoadAction::DontCare;
1929-
DS.StencilStore = StoreAction::DontCare;
19301924
PassDesc.DepthStencil = DS;
19311925
}
19321926

0 commit comments

Comments
 (0)