| OLD | NEW |
| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 } | 166 } |
| 167 return; | 167 return; |
| 168 } | 168 } |
| 169 case gfx::BufferFormat::ATC: | 169 case gfx::BufferFormat::ATC: |
| 170 case gfx::BufferFormat::ATCIA: | 170 case gfx::BufferFormat::ATCIA: |
| 171 case gfx::BufferFormat::DXT1: | 171 case gfx::BufferFormat::DXT1: |
| 172 case gfx::BufferFormat::DXT5: | 172 case gfx::BufferFormat::DXT5: |
| 173 case gfx::BufferFormat::ETC1: | 173 case gfx::BufferFormat::ETC1: |
| 174 case gfx::BufferFormat::RGBA_4444: | 174 case gfx::BufferFormat::RGBA_4444: |
| 175 case gfx::BufferFormat::UYVY_422: | 175 case gfx::BufferFormat::UYVY_422: |
| 176 case gfx::BufferFormat::YUYV_422: |
| 176 NOTREACHED(); | 177 NOTREACHED(); |
| 177 return; | 178 return; |
| 178 } | 179 } |
| 179 NOTREACHED(); | 180 NOTREACHED(); |
| 180 } | 181 } |
| 181 | 182 |
| 182 } // namespace gl | 183 } // namespace gl |
| OLD | NEW |