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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder.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
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_ids_autogen.h ('k') | third_party/mesa/mesa.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bc87b967863c8ab49f0b9fae775a623c33ce7d41..c4a043c4c1accc763bcaf209d0324f3d1917fb85 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -58,9 +58,12 @@
#include "ui/gl/gl_bindings.h"
#include "ui/gl/gl_fence.h"
#include "ui/gl/gl_image.h"
+#include "ui/gl/gl_image_egl.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_surface.h"
+#include "ui/gfx/ozone/surface_factory_ozone.h"
+
#if defined(OS_MACOSX)
#include "ui/gl/io_surface_support_mac.h"
#endif
@@ -7436,6 +7439,26 @@ error::Error GLES2DecoderImpl::HandlePostSubBufferCHROMIUM(
}
}
+error::Error GLES2DecoderImpl::HandleSetOverlayPlaneCHROMIUM(
+ uint32 immediate_data_size,
+ const cmds::SetOverlayPlaneCHROMIUM& c) {
+ gfx::SurfaceFactoryOzone* factory = gfx::SurfaceFactoryOzone::GetInstance();
+
+ TextureRef* ref = texture_manager()->GetTexture(c.texture_id);
+ gfx::GLImage* image =
+ ref->texture()->GetLevelImage(ref->texture()->target(), 0);
+ if (!image) {
+ return error::kNoError;
+ }
+ gfx::GLImageEGL* egl_image = static_cast<gfx::GLImageEGL*>(image);
+ gfx::Rect display_rect(c.x, c.y, c.width, c.height);
+ factory->SetOverlayPlane(1,
+ reinterpret_cast<gfx::AcceleratedWidget>(
+ egl_image->buffer_.native_buffer),
+ display_rect);
+ return error::kNoError;
+}
+
error::Error GLES2DecoderImpl::GetAttribLocationHelper(
GLuint client_id, uint32 location_shm_id, uint32 location_shm_offset,
const std::string& name_str) {
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_ids_autogen.h ('k') | third_party/mesa/mesa.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698