| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "gpu/ipc/common/gpu_memory_buffer_support.h" | 5 #include "gpu/ipc/common/gpu_memory_buffer_support.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 #if defined(USE_OZONE) | 10 #if defined(USE_OZONE) |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 return format == gfx::BufferFormat::R_8 || | 40 return format == gfx::BufferFormat::R_8 || |
| 41 format == gfx::BufferFormat::BGRA_8888 || | 41 format == gfx::BufferFormat::BGRA_8888 || |
| 42 format == gfx::BufferFormat::UYVY_422 || | 42 format == gfx::BufferFormat::UYVY_422 || |
| 43 format == gfx::BufferFormat::YUV_420_BIPLANAR; | 43 format == gfx::BufferFormat::YUV_420_BIPLANAR; |
| 44 } | 44 } |
| 45 NOTREACHED(); | 45 NOTREACHED(); |
| 46 return false; | 46 return false; |
| 47 #endif | 47 #endif |
| 48 | 48 |
| 49 #if defined(USE_OZONE) | 49 #if defined(USE_OZONE) |
| 50 if (!ui::ClientNativePixmapFactory::GetInstance()) { | 50 if (!gfx::ClientNativePixmapFactory::GetInstance()) { |
| 51 // unittests don't have to set ClientNativePixmapFactory. | 51 // unittests don't have to set ClientNativePixmapFactory. |
| 52 return false; | 52 return false; |
| 53 } | 53 } |
| 54 return ui::ClientNativePixmapFactory::GetInstance()->IsConfigurationSupported( | 54 return gfx::ClientNativePixmapFactory::GetInstance() |
| 55 format, usage); | 55 ->IsConfigurationSupported(format, usage); |
| 56 #endif | 56 #endif |
| 57 | 57 |
| 58 NOTREACHED(); | 58 NOTREACHED(); |
| 59 return false; | 59 return false; |
| 60 } | 60 } |
| 61 | 61 |
| 62 } // namespace gpu | 62 } // namespace gpu |
| OLD | NEW |