]> git.cworth.org Git - apitrace/blob - retrace/glws.hpp
Merge remote-tracking branch 'github/master' into d2d
[apitrace] / retrace / glws.hpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 /*
27  * Abstraction for GL window system specific APIs (GLX, WGL).
28  */
29
30 #ifndef _GLWS_HPP_
31 #define _GLWS_HPP_
32
33
34 #include <vector>
35
36
37 namespace glws {
38
39
40 enum Profile {
41     PROFILE_COMPAT = 0,
42     PROFILE_CORE,
43     PROFILE_ES1,
44     PROFILE_ES2,
45     PROFILE_MAX
46 };
47
48
49 bool
50 checkExtension(const char *extName, const char *extString);
51
52
53 template< class T >
54 class Attributes {
55 protected:
56     std::vector<T> attribs;
57
58 public:
59     void add(T param) {
60         attribs.push_back(param);
61     }
62
63     void add(T pname, T pvalue) {
64         add(pname);
65         add(pvalue);
66     }
67
68     void end(T terminator = 0) {
69         add(terminator);
70     }
71
72     operator T * (void) {
73         return &attribs[0];
74     }
75
76     operator const T * (void) const {
77         return &attribs[0];
78     }
79 };
80
81
82 class Visual
83 {
84 public:
85     unsigned long redMask;
86     unsigned long greenMask;
87     unsigned long blueMask;
88     unsigned long alphaMask;
89     bool doubleBuffer;
90
91     virtual ~Visual() {}
92 };
93
94
95 class Drawable
96 {
97 public:
98     const Visual *visual;
99     int width;
100     int height;
101     bool visible;
102
103     Drawable(const Visual *vis, int w, int h) :
104         visual(vis),
105         width(w),
106         height(h),
107         visible(false)
108     {}
109
110     virtual ~Drawable() {}
111     
112     virtual void
113     resize(int w, int h) {
114         width = w;
115         height = h;
116     }
117
118     virtual void
119     show(void) {
120         visible = true;
121     }
122
123     virtual void swapBuffers(void) = 0;
124 };
125
126
127 class Context
128 {
129 public:
130     const Visual *visual;
131     Profile profile;
132     
133     Context(const Visual *vis, Profile prof) :
134         visual(vis),
135         profile(prof)
136     {}
137
138     virtual ~Context() {}
139 };
140
141
142 void
143 init(void);
144
145 void
146 cleanup(void);
147
148 Visual *
149 createVisual(bool doubleBuffer = false, Profile profile = PROFILE_COMPAT);
150
151 Drawable *
152 createDrawable(const Visual *visual, int width = 32, int height = 32);
153
154 Context *
155 createContext(const Visual *visual, Context *shareContext = 0, Profile profile = PROFILE_COMPAT, bool debug = false);
156
157 bool
158 makeCurrent(Drawable *drawable, Context *context);
159
160 bool
161 processEvents(void);
162
163
164 } /* namespace glws */
165
166
167 #endif /* _GLWS_HPP_ */