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

Unified Diff: public/platform/WebExternalTextureMailbox.h

Issue 699103002: Add nearestNeighbor to WebExternalTextureMailbox.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebExternalTextureMailbox.h
diff --git a/public/platform/WebExternalTextureMailbox.h b/public/platform/WebExternalTextureMailbox.h
index c596d572162bfd767be220ad2af9d84e33820242..f51d8e8d3b9194d6183aa8de655c107148948be8 100644
--- a/public/platform/WebExternalTextureMailbox.h
+++ b/public/platform/WebExternalTextureMailbox.h
@@ -37,10 +37,12 @@ struct WebExternalTextureMailbox {
signed char name[64];
unsigned syncPoint;
bool allowOverlay;
+ bool nearestNeighbor;
WebExternalTextureMailbox()
: syncPoint(0)
, allowOverlay(false)
+ , nearestNeighbor(false)
{
memset(name, 0, sizeof(name));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698