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

Unified Diff: gpu/command_buffer/tests/gl_manager.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: gpu/command_buffer/tests/gl_manager.cc
diff --git a/gpu/command_buffer/tests/gl_manager.cc b/gpu/command_buffer/tests/gl_manager.cc
index 821f95b11565d2dfd6a01fa162c9cc8d6adf628f..c3c8c5381d7ce838eb044831b8c375ea8459140c 100644
--- a/gpu/command_buffer/tests/gl_manager.cc
+++ b/gpu/command_buffer/tests/gl_manager.cc
@@ -492,11 +492,18 @@ void GLManager::SetSurfaceVisible(bool visible) {
NOTIMPLEMENTED();
}
-uint32 GLManager::CreateStreamTexture(uint32 texture_id) {
+int32 GLManager::CreateStreamTexture(uint32 texture_id) {
NOTIMPLEMENTED();
return 0;
}
+void GLManager::SetStreamTextureSize(uint32 texture_id,
+ int32 stream_id,
+ size_t width,
+ size_t height) {
+ NOTIMPLEMENTED();
+}
+
void GLManager::SetLock(base::Lock*) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698