]> git.cworth.org Git - vogl/blob - src/voglcommon/vogl_common.h
Initial vogl checkin
[vogl] / src / voglcommon / vogl_common.h
1 /**************************************************************************
2  *
3  * Copyright 2013-2014 RAD Game Tools and Valve Software
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 // File: vogl_common.h
27 #ifndef VOGL_COMMON_H
28 #define VOGL_COMMON_H
29
30 #define _MULTI_THREADED
31
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <string.h>
35 #include <memory.h>
36 #include <stdint.h>
37 #include <stddef.h>
38 #include <assert.h>
39 #include <dlfcn.h>
40
41 #include <pthread.h>
42
43 #include <X11/Xlib.h>
44 #include <X11/Xutil.h>
45 #include <X11/Xmd.h>
46
47 #include "gl_types.h"
48
49 #include "vogl_core.h"
50 #include "vogl_threading.h"
51
52 #include "libtelemetry.h"
53
54 using namespace vogl;
55
56 #define VOGL_API_EXPORT extern "C" __attribute__((visibility("default")))
57
58 // DO NOT leave this enabled when you check in!
59 #ifndef VOGL_FUNCTION_TRACING
60 #define VOGL_FUNCTION_TRACING 0
61 #endif
62
63 #if VOGL_FUNCTION_TRACING
64 extern bool g_vogl_enable_function_tracing;
65
66 class vogl_scoped_func_tracer
67 {
68     const char *m_pFunc;
69     uint m_line;
70
71 public:
72     vogl_scoped_func_tracer(const char *pFunc, uint line)
73     {
74         m_pFunc = NULL;
75         if (!g_vogl_enable_function_tracing)
76             return;
77         m_pFunc = pFunc;
78         m_line = line;
79         printf("IN %s %u\n", pFunc, line);
80     }
81
82     ~vogl_scoped_func_tracer()
83     {
84         if (!g_vogl_enable_function_tracing)
85             return;
86         if (m_pFunc)
87             printf("OUT %s %u\n", m_pFunc, m_line);
88     }
89 };
90
91 #define VOGL_FUNC_TRACER                                                                          \
92     vogl_scoped_func_tracer VOGL_JOIN(func_tracer, __COUNTER__)(__PRETTY_FUNCTION__, __LINE__); \
93     tmZone(TELEMETRY_LEVEL1, TMZF_NONE, "%s", __PRETTY_FUNCTION__);
94 #else
95 #define VOGL_FUNC_TRACER tmZone(TELEMETRY_LEVEL1, TMZF_NONE, "%s", __PRETTY_FUNCTION__);
96 #endif
97
98 #define VOGL_NAMESPACES_HEADER
99 #include "vogl_namespaces.h"
100 #undef VOGL_NAMESPACES_HEADER
101
102 #include "vogl_ctypes.h"
103 #include "vogl_entrypoints.h"
104 #include "vogl_gl_utils.h"
105
106 void vogl_common_lib_early_init();
107 void vogl_common_lib_global_init();
108
109 #endif // VOGL_COMMON_H