summaryrefslogtreecommitdiff
path: root/cogl/cogl-debug-options.h
blob: c93c301f35252fb3553bb3767eb106403058dc5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
 * Cogl
 *
 * An object oriented GL/GLES Abstraction/Utility Layer
 *
 * Copyright (C) 2010 Intel Corporation.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 *
 *
 */

OPT (HANDLE,
     "Cogl Tracing",
     "ref-counts",
     "CoglObject references",
     "Debug ref counting issues for CoglObjects")
OPT (SLICING,
     "Cogl Tracing",
     "slicing",
     "Trace Texture Slicing",
     "debug the creation of texture slices")
OPT (ATLAS,
     "Cogl Tracing",
     "atlas",
     "Trace Atlas Textures",
     "Debug texture atlas management")
OPT (BLEND_STRINGS,
     "Cogl Tracing",
     "blend-strings",
     "Trace Blend Strings",
     "Debug CoglBlendString parsing")
OPT (JOURNAL,
     "Cogl Tracing",
     "journal",
     "Trace Journal",
     "View all the geometry passing through the journal")
OPT (BATCHING,
     "Cogl Tracing",
     "batching",
     "Trace Batching",
     "Show how geometry is being batched in the journal")
OPT (MATRICES,
     "Cogl Tracing",
     "matrices",
     "Trace matrices",
     "Trace all matrix manipulation")
/* XXX we should replace the "draw" option its very hand wavy... */
OPT (DRAW,
     "Cogl Tracing",
     "draw",
     "Trace Misc Drawing",
     "Trace some misc drawing operations")
OPT (PANGO,
     "Cogl Tracing",
     "pango",
     "Trace Pango Renderer",
     "Trace the Cogl Pango renderer")
OPT (TEXTURE_PIXMAP,
     "Cogl Tracing",
     "texture-pixmap",
     "Trace CoglTexturePixmap backend",
     "Trace the Cogl texture pixmap backend")
OPT (RECTANGLES,
     "Visualize",
     "rectangles",
     "Outline rectangles",
     "Add wire outlines for all rectangular geometry")
OPT (WIREFRAME,
     "Visualize",
     "wireframe",
     "Show wireframes",
     "Add wire outlines for all geometry")
OPT (DISABLE_BATCHING,
     "Root Cause",
     "disable-batching",
     "Disable Journal batching",
     "Disable batching of geometry in the Cogl Journal.")
OPT (DISABLE_VBOS,
     "Root Cause",
     "disable-vbos",
     "Disable GL Vertex Buffers",
     "Disable use of OpenGL vertex buffer objects")
OPT (DISABLE_PBOS,
     "Root Cause",
     "disable-pbos",
     "Disable GL Pixel Buffers",
     "Disable use of OpenGL pixel buffer objects")
OPT (DISABLE_SOFTWARE_TRANSFORM,
     "Root Cause",
     "disable-software-transform",
     "Disable software rect transform",
     "Use the GPU to transform rectangular geometry")
OPT (DUMP_ATLAS_IMAGE,
     "Cogl Specialist",
     "dump-atlas-image",
     "Dump atlas images",
     "Dump texture atlas changes to an image file")
OPT (DISABLE_ATLAS,
     "Root Cause",
     "disable-atlas",
     "Disable texture atlasing",
     "Disable use of texture atlasing")
OPT (DISABLE_TEXTURING,
     "Root Cause",
     "disable-texturing",
     "Disable texturing",
     "Disable texturing any primitives")
OPT (DISABLE_ARBFP,
     "Root Cause",
     "disable-arbfp",
     "Disable arbfp",
     "Disable use of ARB fragment programs")
OPT (DISABLE_FIXED,
     "Root Cause",
     "disable-fixed",
     "Disable fixed",
     "Disable use of the fixed function pipeline backend")
OPT (DISABLE_GLSL,
     "Root Cause",
     "disable-glsl",
     "Disable GLSL",
     "Disable use of GLSL")
OPT (DISABLE_BLENDING,
     "Root Cause",
     "disable-blending",
     "Disable blending",
     "Disable use of blending")
OPT (DISABLE_NPOT_TEXTURES,
     "Root Cause",
     "disable-npot-textures",
     "Disable non-power-of-two textures",
     "Makes Cogl think that the GL driver doesn't support NPOT textures "
     "so that it will create sliced textures or textures with waste instead.")
OPT (DISABLE_SOFTWARE_CLIP,
     "Root Cause",
     "disable-software-clip",
     "Disable software clipping",
     "Disables Cogl's attempts to clip some rectangles in software.")
OPT (SHOW_SOURCE,
     "Cogl Tracing",
     "show-source",
     "Show source",
     "Show generated ARBfp/GLSL source code")
OPT (OPENGL,
     "Cogl Tracing",
     "opengl",
     "Trace some OpenGL",
     "Traces some select OpenGL calls")
OPT (OFFSCREEN,
     "Cogl Tracing",
     "offscreen",
     "Trace offscreen support",
     "Debug offscreen support")