blob: 3083fe36ebb1b6dd5acca7cdd8f6e991d3281937 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_
#define CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_
#pragma once
#include "base/basictypes.h"
#include "ui/gfx/compositor/compositor.h"
#include "ui/gfx/surface/transport_dib.h"
// Helper class for storing image data from the GPU process renderered
// on behalf of the RWHVV. It assumes that GL context that will display
// the image data is current when an instance of this object is created
// or destroyed.
class AcceleratedSurfaceContainerLinux {
public:
virtual ~AcceleratedSurfaceContainerLinux() { }
virtual void AddRef() = 0;
virtual void Release() = 0;
// Initialize the surface container, and returns an ID for it.
// The |surface_handle| given to this function may be modified, and the
// modified value should be used to identify the object.
virtual bool Initialize(uint64* surface_handle) = 0;
// Some implementations of this class use shared memory, this is the handle
// to the shared buffer, which is part of the surface container.
virtual TransportDIB::Handle Handle() const = 0;
virtual ui::Texture* GetTexture() = 0;
virtual const gfx::Size& GetSize() = 0;
static AcceleratedSurfaceContainerLinux* Create(const gfx::Size& size);
};
#endif // CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_LINUX_H_
|