xref: /aosp_15_r20/external/angle/util/linux/x11/X11Pixmap.h (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1*8975f5c5SAndroid Build Coastguard Worker //
2*8975f5c5SAndroid Build Coastguard Worker // Copyright 2015 The ANGLE Project Authors. All rights reserved.
3*8975f5c5SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be
4*8975f5c5SAndroid Build Coastguard Worker // found in the LICENSE file.
5*8975f5c5SAndroid Build Coastguard Worker //
6*8975f5c5SAndroid Build Coastguard Worker 
7*8975f5c5SAndroid Build Coastguard Worker // X11Pixmap.h: Definition of the implementation of OSPixmap for X11
8*8975f5c5SAndroid Build Coastguard Worker 
9*8975f5c5SAndroid Build Coastguard Worker #ifndef UTIL_X11_PIXMAP_H_
10*8975f5c5SAndroid Build Coastguard Worker #define UTIL_X11_PIXMAP_H_
11*8975f5c5SAndroid Build Coastguard Worker 
12*8975f5c5SAndroid Build Coastguard Worker #include <X11/Xlib.h>
13*8975f5c5SAndroid Build Coastguard Worker #include <X11/Xutil.h>
14*8975f5c5SAndroid Build Coastguard Worker 
15*8975f5c5SAndroid Build Coastguard Worker #include "util/OSPixmap.h"
16*8975f5c5SAndroid Build Coastguard Worker 
17*8975f5c5SAndroid Build Coastguard Worker class X11Pixmap : public OSPixmap
18*8975f5c5SAndroid Build Coastguard Worker {
19*8975f5c5SAndroid Build Coastguard Worker   public:
20*8975f5c5SAndroid Build Coastguard Worker     X11Pixmap();
21*8975f5c5SAndroid Build Coastguard Worker     ~X11Pixmap() override;
22*8975f5c5SAndroid Build Coastguard Worker 
23*8975f5c5SAndroid Build Coastguard Worker     bool initialize(EGLNativeDisplayType display,
24*8975f5c5SAndroid Build Coastguard Worker                     size_t width,
25*8975f5c5SAndroid Build Coastguard Worker                     size_t height,
26*8975f5c5SAndroid Build Coastguard Worker                     int nativeVisual) override;
27*8975f5c5SAndroid Build Coastguard Worker 
28*8975f5c5SAndroid Build Coastguard Worker     EGLNativePixmapType getNativePixmap() const override;
29*8975f5c5SAndroid Build Coastguard Worker 
30*8975f5c5SAndroid Build Coastguard Worker   private:
31*8975f5c5SAndroid Build Coastguard Worker     Pixmap mPixmap;
32*8975f5c5SAndroid Build Coastguard Worker     Display *mDisplay;
33*8975f5c5SAndroid Build Coastguard Worker };
34*8975f5c5SAndroid Build Coastguard Worker 
35*8975f5c5SAndroid Build Coastguard Worker #endif  // UTIL_X11_PIXMAP_H_
36