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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.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: 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
index 58443ec59611fcf62ebd4a874300509767359f95..389399dd3cc23fa9306e0995ecc2e928415f43fa 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc
@@ -2833,11 +2833,13 @@ class MockGLImage : public gl::GLImage {
MOCK_METHOD1(CopyTexImage, bool(unsigned));
MOCK_METHOD3(CopyTexSubImage,
bool(unsigned, const gfx::Point&, const gfx::Rect&));
- MOCK_METHOD5(ScheduleOverlayPlane, bool(gfx::AcceleratedWidget,
+ MOCK_METHOD7(ScheduleOverlayPlane, bool(gfx::AcceleratedWidget,
int,
gfx::OverlayTransform,
+ gfx::BufferFormat,
const gfx::Rect&,
- const gfx::RectF&));
+ const gfx::RectF&,
+ bool));
MOCK_METHOD3(OnMemoryDump,
void(base::trace_event::ProcessMemoryDump*,
uint64_t,

Powered by Google App Engine
This is Rietveld 408576698