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

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

Issue 1602313002: Removed client side support for old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed DrawingBufferTest reference Created 4 years, 11 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/DrawingBufferTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp
index f09397c52269d8de5d5ff2ef53f21751477a0f29..5f5f59cd269d6926185a0f1724d0efadbf8ec576 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp
@@ -117,14 +117,6 @@ public:
return m_mostRecentlyProducedSize;
}
- bool insertSyncPoint(WGC3Dbyte* syncToken) override
- {
- static WGC3Duint syncPointGenerator = 0;
- WGC3Duint newSyncPoint = ++syncPointGenerator;
- memcpy(syncToken, &newSyncPoint, sizeof(newSyncPoint));
- return true;
- }
-
WGC3Duint64 insertFenceSyncCHROMIUM() override
{
static WGC3Duint64 syncPointGenerator = 0;

Powered by Google App Engine
This is Rietveld 408576698