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

Side by Side Diff: ui/gl/test/gl_image_test_support.cc

Issue 2636433003: [NotForReview] Enable YUV video overlay on Skylake ChromeOS.
Patch Set: Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « ui/gl/gl_image_memory.cc ('k') | ui/ozone/gl/gl_image_ozone_native_pixmap.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/test/gl_image_test_support.h" 5 #include "ui/gl/test/gl_image_test_support.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "ui/gl/gl_implementation.h" 9 #include "ui/gl/gl_implementation.h"
10 #include "ui/gl/init/gl_factory.h" 10 #include "ui/gl/init/gl_factory.h"
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 } 159 }
160 return; 160 return;
161 } 161 }
162 case gfx::BufferFormat::ATC: 162 case gfx::BufferFormat::ATC:
163 case gfx::BufferFormat::ATCIA: 163 case gfx::BufferFormat::ATCIA:
164 case gfx::BufferFormat::DXT1: 164 case gfx::BufferFormat::DXT1:
165 case gfx::BufferFormat::DXT5: 165 case gfx::BufferFormat::DXT5:
166 case gfx::BufferFormat::ETC1: 166 case gfx::BufferFormat::ETC1:
167 case gfx::BufferFormat::RGBA_4444: 167 case gfx::BufferFormat::RGBA_4444:
168 case gfx::BufferFormat::UYVY_422: 168 case gfx::BufferFormat::UYVY_422:
169 case gfx::BufferFormat::YUYV_422:
169 NOTREACHED(); 170 NOTREACHED();
170 return; 171 return;
171 } 172 }
172 NOTREACHED(); 173 NOTREACHED();
173 } 174 }
174 175
175 } // namespace gl 176 } // namespace gl
OLDNEW
« no previous file with comments | « ui/gl/gl_image_memory.cc ('k') | ui/ozone/gl/gl_image_ozone_native_pixmap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698