Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(727)

Unified Diff: third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp

Issue 2812963003: Add DrawingBuffer multisample resolve unit test. (Closed)
Patch Set: Fix leak. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp
index 34ced16215fc082b9cb3e7dd739b72f4aef114e4..edcebe410d477f0963f1aaf8b3290129215fbb63 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferSoftwareRenderingTest.cpp
@@ -54,7 +54,8 @@ class DrawingBufferSoftwareRenderingTest : public Test {
new WebGraphicsContext3DProviderSoftwareRenderingForTests(
std::move(gl)));
drawing_buffer_ = DrawingBufferForTests::Create(
- std::move(provider), nullptr, initial_size, DrawingBuffer::kPreserve);
+ std::move(provider), nullptr, initial_size, DrawingBuffer::kPreserve,
+ false /* multisample_extension_supported */);
CHECK(drawing_buffer_);
}

Powered by Google App Engine
This is Rietveld 408576698