]> git.cworth.org Git - fips/blob - context.h
9b838812722e29e01e382233e00ac8b8fe29775c
[fips] / context.h
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 #ifndef CONTEXT_H
23 #define CONTEXT_H
24
25 #include "metrics.h"
26 #include "metrics-info.h"
27
28 #include "fips-dispatch.h"
29
30 /* Timer query */
31 typedef struct timer_query
32 {
33         unsigned id;
34
35         metrics_op_t op;
36         struct timer_query *next;
37 } timer_query_t;
38
39 /* Performance-monitor query */
40 typedef struct monitor
41 {
42         unsigned id;
43
44         metrics_op_t op;
45         struct monitor *next;
46 } monitor_t;
47
48 typedef struct op_metrics
49 {
50         /* This happens to also be the index into the
51          * ctx->op_metrics array currently
52          */
53         metrics_op_t op;
54         double time_ns;
55
56         double **counters;
57 } op_metrics_t;
58
59 typedef struct context
60 {
61         /* Pointer to the system's context ID, (such as a GLXContext) */
62         void *system_id;
63
64         metrics_info_t metrics_info;
65
66         metrics_op_t op;
67
68         /* GL_TIME_ELAPSED query for which glEndQuery has not yet
69          * been called. */
70         unsigned timer_begun_id;
71
72         /* GL_TIME_ELAPSED queries for which glEndQuery has been
73          * called, (but results have not yet been queried). */
74         timer_query_t *timer_head;
75         timer_query_t *timer_tail;
76
77         /* Performance monitor for which glEndPerfMonitorAMD has not
78          * yet been called. */
79         unsigned monitor_begun_id;
80
81         /* Performance monitors for which glEndPerfMonitorAMD has
82          * been called, (but results have not yet been queried). */
83         monitor_t *monitor_head;
84         monitor_t *monitor_tail;
85
86         int monitors_in_flight;
87
88         unsigned num_op_metrics;
89         op_metrics_t *op_metrics;
90 } context_t;
91
92 /* Indicate that a new context has come into use.
93  *
94  * Here, 'system_context_id' is a pointer to a system context (such as
95  * a GLXContext) which fips can use to map to persistent contex_t
96  * objects if it cares to.
97  */
98 void
99 context_enter (fips_api_t api, void *system_context_id);
100
101 /* Indicate that the application is done using the current context for now.
102  *
103  * The context_enter function should be called before any subsequent
104  * OpenGL calls are made (other than glXMakeCurrent or similar).
105  */
106 void
107 context_leave (void);
108
109 /* Get the current context. */
110 context_t *
111 context_get_current (void);
112
113 #endif