Index: gpu/command_buffer/service/gles2_cmd_decoder.cc |
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc |
index c70a999faaf7ddbd539bfc30d84f70131766f72e..82e55088ed518cdcdf97b6fe9b3c5fc488c1b685 100644 |
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc |
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc |
@@ -7556,6 +7556,16 @@ error::Error GLES2DecoderImpl::HandlePostSubBufferCHROMIUM( |
} |
} |
+error::Error GLES2DecoderImpl::HandleScheduleOverlayPlaneCHROMIUM( |
+ uint32 immediate_data_size, |
+ const cmds::ScheduleOverlayPlaneCHROMIUM& c) { |
+ NOTIMPLEMENTED() << "Overlay supported isn't finished."; |
+ LOCAL_SET_GL_ERROR(GL_INVALID_OPERATION, |
+ "glScheduleOverlayPlaneCHROMIUM", |
+ "function not implemented"); |
+ return error::kNoError; |
+} |
+ |
error::Error GLES2DecoderImpl::GetAttribLocationHelper( |
GLuint client_id, uint32 location_shm_id, uint32 location_shm_offset, |
const std::string& name_str) { |