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

Unified Diff: gpu/pgl/command_buffer_pepper.cc

Issue 6557006: Moved creation of GPU transfer buffers into the browser process.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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: gpu/pgl/command_buffer_pepper.cc
===================================================================
--- gpu/pgl/command_buffer_pepper.cc (revision 75655)
+++ gpu/pgl/command_buffer_pepper.cc (working copy)
@@ -142,6 +142,14 @@
return static_cast<int32>(id);
}
+int32 CommandBufferPepper::RegisterTransferBuffer(
+ base::SharedMemory* shared_memory,
+ size_t size) {
+ // Not implemented by proxy.
+ GPU_NOTREACHED();
+ return -1;
+}
+
void CommandBufferPepper::DestroyTransferBuffer(int32 id) {
device_->destroyBuffer(npp_, context_, id);
}

Powered by Google App Engine
This is Rietveld 408576698