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

Unified Diff: mojo/gles2/command_buffer_client_impl.cc

Issue 1129943006: Implement StreamTexture::BindTexImage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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: mojo/gles2/command_buffer_client_impl.cc
diff --git a/mojo/gles2/command_buffer_client_impl.cc b/mojo/gles2/command_buffer_client_impl.cc
index 314efb3bdd740773a1d15a42d53eb47ce534abaa..b511c8b914cc18ae14d7da21fd4d0386598af9ed 100644
--- a/mojo/gles2/command_buffer_client_impl.cc
+++ b/mojo/gles2/command_buffer_client_impl.cc
@@ -356,6 +356,11 @@ uint32_t CommandBufferClientImpl::CreateStreamTexture(uint32_t texture_id) {
return 0;
}
+uint32 CommandBufferClientImpl::CreateStreamTextureImage(int32 image_id) {
+ NOTIMPLEMENTED();
+ return 0
+}
+
void CommandBufferClientImpl::DidLoseContext(int32_t lost_reason) {
last_state_.error = gpu::error::kLostContext;
last_state_.context_lost_reason =

Powered by Google App Engine
This is Rietveld 408576698