~robertcarr/mir/fix-intermittent-input-test-race

« back to all changes in this revision

Viewing changes to include/shared/mir/graphics/android/mir_native_buffer.h

android drivers have an interface for the drivers to obtain a strong reference to the native window type. Allow the drivers to acquire this strong reference to the buffer backing their texture/fbo.

Approved by PS Jenkins bot, Robert Ancell.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef MIR_GRAPHICS_ANDROID_MIR_NATIVE_BUFFER_H_
 
20
#define MIR_GRAPHICS_ANDROID_MIR_NATIVE_BUFFER_H_
 
21
 
 
22
#include <system/window.h>
 
23
#include <memory>
 
24
#include <mutex>
 
25
 
 
26
namespace mir
 
27
{
 
28
namespace graphics
 
29
{
 
30
namespace android
 
31
{
 
32
 
 
33
struct MirNativeBuffer : public ANativeWindowBuffer
 
34
{
 
35
    MirNativeBuffer(std::shared_ptr<const native_handle_t> const&);
 
36
    void driver_reference();
 
37
    void driver_dereference();
 
38
    void mir_dereference();
 
39
 
 
40
private:
 
41
    ~MirNativeBuffer();
 
42
 
 
43
    std::shared_ptr<const native_handle_t> const handle_resource;
 
44
    std::mutex mutex;
 
45
    bool mir_reference;
 
46
    int driver_references;
 
47
};
 
48
 
 
49
}
 
50
}
 
51
}
 
52
 
 
53
#endif /* MIR_GRAPHICS_ANDROID_MIR_NATIVE_BUFFER_H_ */