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

Unified Diff: content/common/gpu/client/gpu_memory_buffer_impl.cc

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to new crrev.com/1128113011 Created 5 years, 6 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: content/common/gpu/client/gpu_memory_buffer_impl.cc
diff --git a/content/common/gpu/client/gpu_memory_buffer_impl.cc b/content/common/gpu/client/gpu_memory_buffer_impl.cc
index a4113906ec42aa7fdc933c15dec8a8713c557719..8ebe351204692e64c40d310551291dc740c9ea3a 100644
--- a/content/common/gpu/client/gpu_memory_buffer_impl.cc
+++ b/content/common/gpu/client/gpu_memory_buffer_impl.cc
@@ -65,7 +65,7 @@ scoped_ptr<GpuMemoryBufferImpl> GpuMemoryBufferImpl::CreateFromHandle(
#if defined(USE_OZONE)
case gfx::OZONE_NATIVE_BUFFER:
return GpuMemoryBufferImplOzoneNativeBuffer::CreateFromHandle(
- handle, size, format, usage, callback);
+ backend, handle, size, format, usage, callback);
#endif
default:
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698