| 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/gfx/half_float.h" | 9 #include "ui/gfx/half_float.h" |
| 10 #include "ui/gl/gl_implementation.h" | 10 #include "ui/gl/gl_implementation.h" |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 } | 186 } |
| 187 return; | 187 return; |
| 188 } | 188 } |
| 189 case gfx::BufferFormat::ATC: | 189 case gfx::BufferFormat::ATC: |
| 190 case gfx::BufferFormat::ATCIA: | 190 case gfx::BufferFormat::ATCIA: |
| 191 case gfx::BufferFormat::DXT1: | 191 case gfx::BufferFormat::DXT1: |
| 192 case gfx::BufferFormat::DXT5: | 192 case gfx::BufferFormat::DXT5: |
| 193 case gfx::BufferFormat::ETC1: | 193 case gfx::BufferFormat::ETC1: |
| 194 case gfx::BufferFormat::RGBA_4444: | 194 case gfx::BufferFormat::RGBA_4444: |
| 195 case gfx::BufferFormat::UYVY_422: | 195 case gfx::BufferFormat::UYVY_422: |
| 196 case gfx::BufferFormat::YUYV_422: |
| 196 NOTREACHED(); | 197 NOTREACHED(); |
| 197 return; | 198 return; |
| 198 } | 199 } |
| 199 NOTREACHED(); | 200 NOTREACHED(); |
| 200 } | 201 } |
| 201 | 202 |
| 202 } // namespace gl | 203 } // namespace gl |
| OLD | NEW |