]> git.cworth.org Git - apitrace/blob - retrace/glretrace.hpp
replay: Support applications mixing glCreateProgramObjectARB and glUseProgram
[apitrace] / retrace / glretrace.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 #ifndef _GLRETRACE_HPP_
27 #define _GLRETRACE_HPP_
28
29 #include "glws.hpp"
30 #include "retrace.hpp"
31
32
33 namespace glretrace {
34
35 struct Context {
36     Context(glws::Context* context)
37         : wsContext(context),
38           drawable(0),
39           activeProgram(0),
40           used(false)
41     {
42     }
43
44     ~Context();
45
46     glws::Context* wsContext;
47
48     // Bound drawable
49     glws::Drawable *drawable;
50
51     GLuint activeProgram;
52     bool used;
53     
54     // Context must be current
55     inline bool
56     hasExtension(const char *extension) const {
57         return wsContext->hasExtension(extension);
58     }
59 };
60
61 extern bool insideList;
62 extern bool insideGlBeginEnd;
63 extern bool supportsARBShaderObjects;
64
65 Context *
66 getCurrentContext(void);
67
68
69 int
70 parseAttrib(const trace::Value *attribs, int param, int default_);
71
72
73 glws::Drawable *
74 createDrawable(glws::Profile profile);
75
76 glws::Drawable *
77 createDrawable(void);
78
79 glws::Drawable *
80 createPbuffer(int width, int height);
81
82 Context *
83 createContext(Context *shareContext, glws::Profile profile);
84
85 Context *
86 createContext(Context *shareContext = 0);
87
88 bool
89 makeCurrent(trace::Call &call, glws::Drawable *drawable, Context *context);
90
91
92 void
93 checkGlError(trace::Call &call);
94
95 extern const retrace::Entry gl_callbacks[];
96 extern const retrace::Entry cgl_callbacks[];
97 extern const retrace::Entry glx_callbacks[];
98 extern const retrace::Entry wgl_callbacks[];
99 extern const retrace::Entry egl_callbacks[];
100
101 void frame_complete(trace::Call &call);
102 void initContext();
103
104
105 void updateDrawable(int width, int height);
106
107 void flushQueries();
108 void beginProfile(trace::Call &call, bool isDraw);
109 void endProfile(trace::Call &call, bool isDraw);
110
111 } /* namespace glretrace */
112
113
114 #endif /* _GLRETRACE_HPP_ */