Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / content / common / gpu / client / gpu_memory_buffer_impl_ozone_native_buffer.h
index 7f13f23..2da30b4 100644 (file)
@@ -12,42 +12,44 @@ namespace content {
 // Implementation of GPU memory buffer based on Ozone native buffers.
 class GpuMemoryBufferImplOzoneNativeBuffer : public GpuMemoryBufferImpl {
  public:
-  static void Create(const gfx::Size& size,
-                     unsigned internalformat,
-                     unsigned usage,
+  static void Create(gfx::GpuMemoryBufferId id,
+                     const gfx::Size& size,
+                     Format format,
                      int client_id,
                      const CreationCallback& callback);
 
-  static void AllocateForChildProcess(const gfx::Size& size,
-                                      unsigned internalformat,
-                                      unsigned usage,
+  static void AllocateForChildProcess(gfx::GpuMemoryBufferId id,
+                                      const gfx::Size& size,
+                                      Format format,
                                       int child_client_id,
                                       const AllocationCallback& callback);
 
   static scoped_ptr<GpuMemoryBufferImpl> CreateFromHandle(
       const gfx::GpuMemoryBufferHandle& handle,
       const gfx::Size& size,
-      unsigned internalformat,
+      Format format,
       const DestructionCallback& callback);
 
-  static bool IsFormatSupported(unsigned internalformat);
-  static bool IsUsageSupported(unsigned usage);
-  static bool IsConfigurationSupported(unsigned internalformat, unsigned usage);
+  static void DeletedByChildProcess(gfx::GpuMemoryBufferId id,
+                                    int child_client_id,
+                                    uint32_t sync_point);
+
+  static bool IsFormatSupported(Format format);
+  static bool IsUsageSupported(Usage usage);
+  static bool IsConfigurationSupported(Format format, Usage usage);
 
   // Overridden from gfx::GpuMemoryBuffer:
-  virtual void* Map() OVERRIDE;
-  virtual void Unmap() OVERRIDE;
-  virtual uint32 GetStride() const OVERRIDE;
-  virtual gfx::GpuMemoryBufferHandle GetHandle() const OVERRIDE;
+  void* Map() override;
+  void Unmap() override;
+  uint32 GetStride() const override;
+  gfx::GpuMemoryBufferHandle GetHandle() const override;
 
  private:
-  GpuMemoryBufferImplOzoneNativeBuffer(const gfx::Size& size,
-                                       unsigned internalformat,
-                                       const DestructionCallback& callback,
-                                       const gfx::GpuMemoryBufferId& id);
-  virtual ~GpuMemoryBufferImplOzoneNativeBuffer();
-
-  gfx::GpuMemoryBufferId id_;
+  GpuMemoryBufferImplOzoneNativeBuffer(gfx::GpuMemoryBufferId id,
+                                       const gfx::Size& size,
+                                       Format format,
+                                       const DestructionCallback& callback);
+  ~GpuMemoryBufferImplOzoneNativeBuffer() override;
 
   DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplOzoneNativeBuffer);
 };