dawn: Remove semicolons.
A cleanup needed for turning on -Wextra-semi in Chromium builds. Bug: chromium:926235 Change-Id: I3d2b517ad21dfae9e7dc06613a7fe3e98d783b2a Reviewed-on: https://dawn-review.googlesource.com/c/4841 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
parent
56006dcf65
commit
e3b27e6661
|
@ -29,7 +29,7 @@ class DevNull : public dawn_wire::CommandSerializer {
|
||||||
}
|
}
|
||||||
bool Flush() override {
|
bool Flush() override {
|
||||||
return true;
|
return true;
|
||||||
};
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<char> buf;
|
std::vector<char> buf;
|
||||||
|
|
|
@ -467,4 +467,4 @@ TEST_P(BindGroupTests, DrawTwiceInSamePipelineWithFourBindGroupSets)
|
||||||
EXPECT_PIXEL_RGBA8_EQ(notFilled, renderPass.color, max, max);
|
EXPECT_PIXEL_RGBA8_EQ(notFilled, renderPass.color, max, max);
|
||||||
}
|
}
|
||||||
|
|
||||||
DAWN_INSTANTIATE_TEST(BindGroupTests, D3D12Backend, MetalBackend, OpenGLBackend, VulkanBackend);
|
DAWN_INSTANTIATE_TEST(BindGroupTests, D3D12Backend, MetalBackend, OpenGLBackend, VulkanBackend)
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
namespace dawn_native {
|
namespace dawn_native {
|
||||||
class Instance;
|
class Instance;
|
||||||
};
|
}
|
||||||
|
|
||||||
#define ASSERT_DEVICE_ERROR(statement) \
|
#define ASSERT_DEVICE_ERROR(statement) \
|
||||||
StartExpectDeviceError(); \
|
StartExpectDeviceError(); \
|
||||||
|
|
Loading…
Reference in New Issue