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

Commit 0a28dfb

Browse files
author
jonahwilliams
committed
remove condition in test that isn't true with eager reset.
1 parent 2748e88 commit 0a28dfb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

impeller/renderer/backend/vulkan/test/gpu_tracer_unittests.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ TEST(GPUTracerVK, DoesNotTraceOutsideOfFrameWorkload) {
6666
auto called = GetMockVulkanFunctions(context->GetDevice());
6767

6868
ASSERT_NE(called, nullptr);
69-
ASSERT_TRUE(std::find(called->begin(), called->end(), "vkCreateQueryPool") ==
70-
called->end());
7169
ASSERT_TRUE(std::find(called->begin(), called->end(),
7270
"vkGetQueryPoolResults") == called->end());
7371
}

shell/platform/android/image_external_texture_vk.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ void ImageExternalTextureVK::ProcessFrame(PaintContext& context,
5959
desc, impeller_context_->GetDevice(), latest_hardware_buffer,
6060
hb_desc);
6161

62-
auto texture = std::make_shared<impeller::TextureVK>(impeller_context_,
63-
texture_source, true);
62+
auto texture =
63+
std::make_shared<impeller::TextureVK>(impeller_context_, texture_source);
6464
// Transition the layout to shader read.
6565
{
6666
auto buffer = impeller_context_->CreateCommandBuffer();

0 commit comments

Comments
 (0)