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

Unified Diff: components/mus/gles2/command_buffer_local.cc

Issue 1417853006: gpu: introduce glSetStreamTextureSizeCHROMIUM(GLuint texture, GLint stream_id, GLsizei width, GLsiz… Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android_webview.test failure Created 5 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
Index: components/mus/gles2/command_buffer_local.cc
diff --git a/components/mus/gles2/command_buffer_local.cc b/components/mus/gles2/command_buffer_local.cc
index 2e0535bba42121677e156848bd326c469b9dde1a..b72b556604d8b492b4dcabb2f2a3de5f971cc5cd 100644
--- a/components/mus/gles2/command_buffer_local.cc
+++ b/components/mus/gles2/command_buffer_local.cc
@@ -199,12 +199,20 @@ void CommandBufferLocal::SetSurfaceVisible(bool visible) {
NOTIMPLEMENTED();
}
-uint32_t CommandBufferLocal::CreateStreamTexture(uint32_t texture_id) {
+int32 CommandBufferLocal::CreateStreamTexture(uint32_t texture_id) {
// TODO(piman)
NOTIMPLEMENTED();
return 0;
}
+void CommandBufferLocal::SetStreamTextureSize(uint32 texture_id,
+ int32 stream_id,
+ size_t width,
+ size_t height) {
+ // TODO(piman)
+ NOTIMPLEMENTED();
+}
+
void CommandBufferLocal::SetLock(base::Lock* lock) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698