]> git.cworth.org Git - apitrace/blob - retrace/glretrace_cgl.cpp
Rescale/rebase the times just before writing it.
[apitrace] / retrace / glretrace_cgl.cpp
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 #include <string.h>
28
29 #include "glproc.hpp"
30 #include "retrace.hpp"
31 #include "glretrace.hpp"
32
33
34 using namespace glretrace;
35
36
37 typedef std::map<unsigned long long, glws::Drawable *> DrawableMap;
38 typedef std::map<unsigned long long, glws::Context *> ContextMap;
39 static DrawableMap drawable_map;
40 static ContextMap context_map;
41 static glws::Context *sharedContext = NULL;
42
43
44 static glws::Drawable *
45 getDrawable(unsigned long drawable_id) {
46     if (drawable_id == 0) {
47         return NULL;
48     }
49
50     /* XXX: Support multiple drawables. */
51     drawable_id = 1;
52
53     DrawableMap::const_iterator it;
54     it = drawable_map.find(drawable_id);
55     if (it == drawable_map.end()) {
56         return (drawable_map[drawable_id] = glretrace::createDrawable());
57     }
58
59     return it->second;
60 }
61
62
63 static glws::Context *
64 getContext(unsigned long long ctx) {
65     if (ctx == 0) {
66         return NULL;
67     }
68
69     ContextMap::const_iterator it;
70     it = context_map.find(ctx);
71     if (it == context_map.end()) {
72         glws::Context *context;
73         context_map[ctx] = context = glretrace::createContext(sharedContext);
74         if (!sharedContext) {
75             sharedContext = context;
76         }
77         return context;
78     }
79
80     return it->second;
81 }
82
83
84 static void retrace_CGLSetCurrentContext(trace::Call &call) {
85     unsigned long long ctx = call.arg(0).toUIntPtr();
86
87     glws::Drawable *new_drawable = getDrawable(ctx);
88     glws::Context *new_context = getContext(ctx);
89
90     glretrace::makeCurrent(call, new_drawable, new_context);
91 }
92
93
94 static void retrace_CGLFlushDrawable(trace::Call &call) {
95     if (currentDrawable && currentContext) {
96         if (retrace::doubleBuffer) {
97             currentDrawable->swapBuffers();
98         } else {
99             glFlush();
100         }
101
102         frame_complete(call);
103     }
104 }
105
106
107 const retrace::Entry glretrace::cgl_callbacks[] = {
108     {"CGLSetCurrentContext", &retrace_CGLSetCurrentContext},
109     {"CGLGetCurrentContext", &retrace::ignore},
110     {"CGLEnable", &retrace::ignore},
111     {"CGLDisable", &retrace::ignore},
112     {"CGLSetParameter", &retrace::ignore},
113     {"CGLGetParameter", &retrace::ignore},
114     {"CGLFlushDrawable", &retrace_CGLFlushDrawable},
115     {NULL, NULL},
116 };
117