Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 1245e4b

Browse files
jonahwilliamszanderso
authored andcommitted
fix format of test
1 parent b7ef641 commit 1245e4b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

impeller/renderer/blit_pass_unittests.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ TEST_P(BlitPassTest, BlitAcrossDifferentPixelFormatsFails) {
2222
auto blit_pass = cmd_buffer->CreateBlitPass();
2323

2424
TextureDescriptor src_desc;
25+
src_desc.storage_mode = StorageMode::kDevicePrivate;
2526
src_desc.format = PixelFormat::kA8UNormInt;
2627
src_desc.size = {100, 100};
2728
auto src = context->GetResourceAllocator()->CreateTexture(src_desc);
2829

2930
TextureDescriptor dst_format;
31+
dst_format.storage_mode = StorageMode::kDevicePrivate;
3032
dst_format.format = PixelFormat::kR8G8B8A8UNormInt;
3133
dst_format.size = {100, 100};
3234
auto dst = context->GetResourceAllocator()->CreateTexture(dst_format);

0 commit comments

Comments
 (0)