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

Unified Diff: gpu/command_buffer/client/gles2_implementation.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 months 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/client/gles2_implementation.cc
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
index b99b332f74f559e299b6bd9c5cff26f12417fc26..38766c20273d63b7f006f221618d71e9105e85c1 100644
--- a/gpu/command_buffer/client/gles2_implementation.cc
+++ b/gpu/command_buffer/client/gles2_implementation.cc
@@ -2791,6 +2791,17 @@ void GLES2Implementation::PartialSwapBuffers(const gfx::Rect& sub_buffer) {
weak_ptr_factory_.GetWeakPtr()));
}
+void GLES2Implementation::SetOverlayPlane(int plane_id,
+ int texture_id,
+ gfx::Rect sub_buffer) {
+ SetOverlayPlaneCHROMIUM(plane_id,
+ texture_id,
+ sub_buffer.x(),
+ sub_buffer.y(),
+ sub_buffer.width(),
+ sub_buffer.height());
+}
+
void GLES2Implementation::SetSwapBuffersCompleteCallback(
const base::Closure& swap_buffers_complete_callback) {
swap_buffers_complete_callback_ = swap_buffers_complete_callback;
@@ -3230,6 +3241,15 @@ void GLES2Implementation::PostSubBufferCHROMIUM(
}
}
+void GLES2Implementation::SetOverlayPlaneCHROMIUM(GLint plane_id,
+ GLenum texture_id,
+ GLint x,
+ GLint y,
+ GLint width,
+ GLint height) {
+ helper_->SetOverlayPlaneCHROMIUM(plane_id, texture_id, x, y, width, height);
+}
+
void GLES2Implementation::DeleteQueriesEXTHelper(
GLsizei n, const GLuint* queries) {
// TODO(gman): Remove this as queries are not shared resources.
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation.h ('k') | gpu/command_buffer/client/gles2_implementation_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698