| 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 15 matching lines...) Expand all Loading... |
| 26 return gfx::EMPTY_BUFFER; | 26 return gfx::EMPTY_BUFFER; |
| 27 } | 27 } |
| 28 | 28 |
| 29 bool IsNativeGpuMemoryBufferConfigurationSupported(gfx::BufferFormat format, | 29 bool IsNativeGpuMemoryBufferConfigurationSupported(gfx::BufferFormat format, |
| 30 gfx::BufferUsage usage) { | 30 gfx::BufferUsage usage) { |
| 31 #if defined(OS_MACOSX) | 31 #if defined(OS_MACOSX) |
| 32 switch (usage) { | 32 switch (usage) { |
| 33 case gfx::BufferUsage::GPU_READ: | 33 case gfx::BufferUsage::GPU_READ: |
| 34 case gfx::BufferUsage::SCANOUT: | 34 case gfx::BufferUsage::SCANOUT: |
| 35 return format == gfx::BufferFormat::BGRA_8888 || | 35 return format == gfx::BufferFormat::BGRA_8888 || |
| 36 format == gfx::BufferFormat::RGBA_8888; | 36 format == gfx::BufferFormat::RGBA_8888 || |
| 37 format == gfx::BufferFormat::BGRX_8888; |
| 37 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE: | 38 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE: |
| 38 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE_PERSISTENT: | 39 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE_PERSISTENT: |
| 39 return format == gfx::BufferFormat::R_8 || | 40 return format == gfx::BufferFormat::R_8 || |
| 40 format == gfx::BufferFormat::BGRA_8888 || | 41 format == gfx::BufferFormat::BGRA_8888 || |
| 41 format == gfx::BufferFormat::UYVY_422 || | 42 format == gfx::BufferFormat::UYVY_422 || |
| 42 format == gfx::BufferFormat::YUV_420_BIPLANAR; | 43 format == gfx::BufferFormat::YUV_420_BIPLANAR; |
| 43 } | 44 } |
| 44 NOTREACHED(); | 45 NOTREACHED(); |
| 45 return false; | 46 return false; |
| 46 #endif | 47 #endif |
| (...skipping 18 matching lines...) Expand all Loading... |
| 65 } | 66 } |
| 66 return ui::ClientNativePixmapFactory::GetInstance()->IsConfigurationSupported( | 67 return ui::ClientNativePixmapFactory::GetInstance()->IsConfigurationSupported( |
| 67 format, usage); | 68 format, usage); |
| 68 #endif | 69 #endif |
| 69 | 70 |
| 70 NOTREACHED(); | 71 NOTREACHED(); |
| 71 return false; | 72 return false; |
| 72 } | 73 } |
| 73 | 74 |
| 74 } // namespace gpu | 75 } // namespace gpu |
| OLD | NEW |