]> git.cworth.org Git - fips/blob - context.h
Begin re-factoring metrics.c into separate context.c and metrics-info.c
[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         metrics_info_t metrics_info;
62
63         metrics_op_t op;
64
65         /* GL_TIME_ELAPSED query for which glEndQuery has not yet
66          * been called. */
67         unsigned timer_begun_id;
68
69         /* GL_TIME_ELAPSED queries for which glEndQuery has been
70          * called, (but results have not yet been queried). */
71         timer_query_t *timer_head;
72         timer_query_t *timer_tail;
73
74         /* Performance monitor for which glEndPerfMonitorAMD has not
75          * yet been called. */
76         unsigned monitor_begun_id;
77
78         /* Performance monitors for which glEndPerfMonitorAMD has
79          * been called, (but results have not yet been queried). */
80         monitor_t *monitor_head;
81         monitor_t *monitor_tail;
82
83         int monitors_in_flight;
84
85         unsigned num_op_metrics;
86         op_metrics_t *op_metrics;
87 } context_t;
88
89 /* Indicate that a new context has come into use.
90  *
91  * Here, 'system_context_id' is a pointer to a system context (such as
92  * a GLXContext) which fips can use to map to persistent contex_t
93  * objects if it cares to.
94  */
95 void
96 context_enter (fips_api_t api, void *system_context_id);
97
98 /* Indicate that the application is done using the current context for now.
99  *
100  * The context_enter function should be called before any subsequent
101  * OpenGL calls are made (other than glXMakeCurrent or similar).
102  */
103 void
104 context_leave (void);
105
106 /* Get the current context. */
107 context_t *
108 context_get_current (void);
109
110 #endif