blob: d3369c0b3a9f0f4049d0760c8abdd0bce73153de (
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
|
// Copyright 2014 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 UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_
#define UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_
#include "base/memory/ref_counted.h"
namespace ui {
// This represents a buffer that can be directly imported via GL for
// rendering, or exported via dma-buf fds.
class NativePixmap : public base::RefCountedThreadSafe<NativePixmap> {
public:
NativePixmap() {}
virtual void* /* EGLClientBuffer */ GetEGLClientBuffer() = 0;
virtual int GetDmaBufFd() = 0;
virtual int GetDmaBufPitch() = 0;
protected:
virtual ~NativePixmap() {}
private:
friend class base::RefCountedThreadSafe<NativePixmap>;
DISALLOW_COPY_AND_ASSIGN(NativePixmap);
};
} // namespace ui
#endif // UI_OZONE_PUBLIC_NATIVE_PIXMAP_H_
|