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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc

Issue 2456213002: WebVR: implement SetSurfaceHandleCHROMIUM extension for gvr_device.
Patch Set: bajones #16, #19: Use struct for state, fix BUILD deps Created 4 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/service/gles2_cmd_decoder_passthrough_doers.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc
index 77049c59825abe6c706a63a4bbe3ae01af7ed6c3..1a1f0e5312525e1b79b2bfd787de925c5d8b7cae 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc
@@ -1463,6 +1463,11 @@ error::Error GLES2DecoderPassthroughImpl::DoScissor(GLint x,
return error::kNoError;
}
+error::Error GLES2DecoderPassthroughImpl::DoSetSurfaceHandleCHROMIUM(
+ GLint surface_handle) {
piman 2016/11/09 17:50:07 Raise an error if not implemented? What is the pla
+ return error::kNoError;
+}
+
error::Error GLES2DecoderPassthroughImpl::DoShaderBinary(GLsizei n,
const GLuint* shaders,
GLenum binaryformat,

Powered by Google App Engine
This is Rietveld 408576698