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

Unified Diff: gpu/gles2_conform_support/egl/display.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/gles2_conform_support/egl/display.cc
diff --git a/gpu/gles2_conform_support/egl/display.cc b/gpu/gles2_conform_support/egl/display.cc
index fb4327254ce5e5461f18dd48ef6ff3d9557495c3..b7bd6cf6b361a0ce7febac83113983a145c7b742 100644
--- a/gpu/gles2_conform_support/egl/display.cc
+++ b/gpu/gles2_conform_support/egl/display.cc
@@ -332,11 +332,18 @@ void Display::SetSurfaceVisible(bool visible) {
NOTIMPLEMENTED();
}
-uint32 Display::CreateStreamTexture(uint32 texture_id) {
+int32 Display::CreateStreamTexture(uint32 texture_id) {
NOTIMPLEMENTED();
return 0;
}
+void Display::SetStreamTextureSize(uint32 texture_id,
+ int32 stream_id,
+ size_t width,
+ size_t height) {
+ NOTIMPLEMENTED();
+}
+
void Display::SetLock(base::Lock*) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698