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

Side by Side Diff: ui/ozone/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef UI_OZONE_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_ 5 #ifndef UI_OZONE_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_
6 #define UI_OZONE_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_ 6 #define UI_OZONE_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 19 matching lines...) Expand all
30 GpuMemoryBufferFactoryOzoneNativeBuffer(); 30 GpuMemoryBufferFactoryOzoneNativeBuffer();
31 virtual ~GpuMemoryBufferFactoryOzoneNativeBuffer(); 31 virtual ~GpuMemoryBufferFactoryOzoneNativeBuffer();
32 32
33 // Creates a GPU memory buffer identified by |id|. 33 // Creates a GPU memory buffer identified by |id|.
34 // It can be called on any thread. 34 // It can be called on any thread.
35 bool CreateGpuMemoryBuffer(gfx::GpuMemoryBufferId id, 35 bool CreateGpuMemoryBuffer(gfx::GpuMemoryBufferId id,
36 const gfx::Size& size, 36 const gfx::Size& size,
37 gfx::GpuMemoryBuffer::Format format, 37 gfx::GpuMemoryBuffer::Format format,
38 gfx::GpuMemoryBuffer::Usage usage, 38 gfx::GpuMemoryBuffer::Usage usage,
39 int client_id, 39 int client_id,
40 gfx::PluginWindowHandle surface_handle); 40 gfx::PluginWindowHandle surface_handle,
41 gfx::GpuMemoryBufferHandle* new_handle);
reveman 2015/05/11 16:40:57 Please pass the handle as return value to be consi
dshwang 2015/05/14 12:25:47 Done. In addition, I remove all pointer passing co
41 42
42 // Destroys GPU memory buffer identified by |id|. 43 // Destroys GPU memory buffer identified by |id|.
43 // It can be called on any thread. 44 // It can be called on any thread.
44 void DestroyGpuMemoryBuffer(gfx::GpuMemoryBufferId id, int client_id); 45 void DestroyGpuMemoryBuffer(gfx::GpuMemoryBufferId id, int client_id);
45 46
46 // Creates a GLImage instance for GPU memory buffer identified by |id|. 47 // Creates a GLImage instance for GPU memory buffer identified by |id|.
47 scoped_refptr<gfx::GLImage> CreateImageForGpuMemoryBuffer( 48 scoped_refptr<gfx::GLImage> CreateImageForGpuMemoryBuffer(
48 gfx::GpuMemoryBufferId id, 49 gfx::GpuMemoryBufferId id,
49 const gfx::Size& size, 50 const gfx::Size& size,
50 gfx::GpuMemoryBuffer::Format format, 51 gfx::GpuMemoryBuffer::Format format,
51 unsigned internalformat, 52 unsigned internalformat,
52 int client_id); 53 int client_id);
53 54
54 static scoped_refptr<gfx::GLImage> CreateImageForPixmap( 55 static scoped_refptr<gfx::GLImage> CreateImageForPixmap(
55 scoped_refptr<NativePixmap> pixmap, 56 scoped_refptr<NativePixmap> pixmap,
56 const gfx::Size& size, 57 const gfx::Size& size,
57 gfx::GpuMemoryBuffer::Format format, 58 gfx::GpuMemoryBuffer::Format format,
58 unsigned internalformat); 59 unsigned internalformat);
59 60
60 private: 61 private:
61 BufferToPixmapMap native_pixmap_map_; 62 BufferToPixmapMap native_pixmap_map_;
62 base::Lock native_pixmap_map_lock_; 63 base::Lock native_pixmap_map_lock_;
63 }; 64 };
64 65
65 } // namespace ui 66 } // namespace ui
66 67
67 #endif // UI_OZONE_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_ 68 #endif // UI_OZONE_GPU_GPU_MEMORY_BUFFER_FACTORY_OZONE_NATIVE_BUFFER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698