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

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

Issue 1472993003: Add CommitOverlayPlanesCHROMIUM command buffer function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot to add the extension description txt file 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/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 fbdd7d32167a9ee9db098eb6896ff339172c02f6..814d46776a1ef00d205ad386066b3520058d4f2d 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -1123,6 +1123,8 @@ class GLES2DecoderImpl : public GLES2Decoder, public ErrorStateClient {
// Callback for async SwapBuffers.
void FinishSwapBuffers(gfx::SwapResult result);
+ void DoCommitOverlayPlanes();
+
// Wrapper for SwapInterval.
void DoSwapInterval(int interval);
@@ -11997,6 +11999,11 @@ void GLES2DecoderImpl::FinishSwapBuffers(gfx::SwapResult result) {
}
}
+void GLES2DecoderImpl::DoCommitOverlayPlanes() {
+ // TODO(watk): crbug.com/560592
+ NOTIMPLEMENTED();
+}
+
void GLES2DecoderImpl::DoSwapInterval(int interval) {
context_->SetSwapInterval(interval);
}
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_ids_autogen.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698