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

Side by Side Diff: gpu/ipc/common/gpu_memory_buffer_support.cc

Issue 2920793005: gpu: support R16 GPUMemoryBuffer (Closed)
Patch Set: Created 3 years, 6 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
OLDNEW
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(OS_LINUX) 10 #if defined(OS_LINUX)
(...skipping 20 matching lines...) Expand all
31 switch (usage) { 31 switch (usage) {
32 case gfx::BufferUsage::GPU_READ: 32 case gfx::BufferUsage::GPU_READ:
33 case gfx::BufferUsage::SCANOUT: 33 case gfx::BufferUsage::SCANOUT:
34 case gfx::BufferUsage::SCANOUT_CPU_READ_WRITE: 34 case gfx::BufferUsage::SCANOUT_CPU_READ_WRITE:
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 format == gfx::BufferFormat::BGRX_8888;
38 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE: 38 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE:
39 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE_PERSISTENT: 39 case gfx::BufferUsage::GPU_READ_CPU_READ_WRITE_PERSISTENT:
40 return format == gfx::BufferFormat::R_8 || 40 return format == gfx::BufferFormat::R_8 ||
41 format == gfx::BufferFormat::R_16 ||
41 format == gfx::BufferFormat::BGRA_8888 || 42 format == gfx::BufferFormat::BGRA_8888 ||
42 format == gfx::BufferFormat::RGBA_F16 || 43 format == gfx::BufferFormat::RGBA_F16 ||
43 format == gfx::BufferFormat::UYVY_422 || 44 format == gfx::BufferFormat::UYVY_422 ||
44 format == gfx::BufferFormat::YUV_420_BIPLANAR; 45 format == gfx::BufferFormat::YUV_420_BIPLANAR;
45 } 46 }
46 NOTREACHED(); 47 NOTREACHED();
47 return false; 48 return false;
48 #endif 49 #endif
49 50
50 #if defined(OS_LINUX) 51 #if defined(OS_LINUX)
51 if (!gfx::ClientNativePixmapFactory::GetInstance()) { 52 if (!gfx::ClientNativePixmapFactory::GetInstance()) {
52 // unittests don't have to set ClientNativePixmapFactory. 53 // unittests don't have to set ClientNativePixmapFactory.
53 return false; 54 return false;
54 } 55 }
55 return gfx::ClientNativePixmapFactory::GetInstance() 56 return gfx::ClientNativePixmapFactory::GetInstance()
56 ->IsConfigurationSupported(format, usage); 57 ->IsConfigurationSupported(format, usage);
57 #endif 58 #endif
58 59
59 NOTREACHED(); 60 NOTREACHED();
60 return false; 61 return false;
61 } 62 }
62 63
63 } // namespace gpu 64 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698