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

Side by Side Diff: ui/gl/gl_image_surface_texture.cc

Issue 1513283002: Add support to send optimal format as part of ScheduleOverlayPlane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update cmd_buffer_functions Created 5 years 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 unified diff | Download patch
« no previous file with comments | « ui/gl/gl_image_surface_texture.h ('k') | ui/gl/gl_surface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gl/gl_image_surface_texture.h" 5 #include "ui/gl/gl_image_surface_texture.h"
6 6
7 #include "base/trace_event/trace_event.h" 7 #include "base/trace_event/trace_event.h"
8 #include "ui/gl/android/surface_texture.h" 8 #include "ui/gl/android/surface_texture.h"
9 9
10 namespace gl { 10 namespace gl {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 bool GLImageSurfaceTexture::CopyTexSubImage(unsigned target, 86 bool GLImageSurfaceTexture::CopyTexSubImage(unsigned target,
87 const gfx::Point& offset, 87 const gfx::Point& offset,
88 const gfx::Rect& rect) { 88 const gfx::Rect& rect) {
89 return false; 89 return false;
90 } 90 }
91 91
92 bool GLImageSurfaceTexture::ScheduleOverlayPlane( 92 bool GLImageSurfaceTexture::ScheduleOverlayPlane(
93 gfx::AcceleratedWidget widget, 93 gfx::AcceleratedWidget widget,
94 int z_order, 94 int z_order,
95 gfx::OverlayTransform transform, 95 gfx::OverlayTransform transform,
96 gfx::BufferFormat storage_format,
96 const gfx::Rect& bounds_rect, 97 const gfx::Rect& bounds_rect,
97 const gfx::RectF& crop_rect) { 98 const gfx::RectF& crop_rect,
99 bool handle_scaling) {
98 return false; 100 return false;
99 } 101 }
100 102
101 void GLImageSurfaceTexture::OnMemoryDump( 103 void GLImageSurfaceTexture::OnMemoryDump(
102 base::trace_event::ProcessMemoryDump* pmd, 104 base::trace_event::ProcessMemoryDump* pmd,
103 uint64_t process_tracing_id, 105 uint64_t process_tracing_id,
104 const std::string& dump_name) { 106 const std::string& dump_name) {
105 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 107 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914
106 } 108 }
107 109
108 } // namespace gl 110 } // namespace gl
OLDNEW
« no previous file with comments | « ui/gl/gl_image_surface_texture.h ('k') | ui/gl/gl_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698