blob: 790c4f46643f9aba52c5b0124abd690dab97cd4d [file] [log] [blame]
Romain Guyc15008e2010-11-10 11:59:15 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_HWUI_DEBUG_H
18#define ANDROID_HWUI_DEBUG_H
19
20// Turn on to check for OpenGL errors on each frame
21#define DEBUG_OPENGL 1
22
Romain Guya60c3882011-08-01 15:28:16 -070023// Turn on to display informations about the GPU
24#define DEBUG_EXTENSIONS 0
25
Romain Guyc9855a52011-01-21 21:14:15 -080026// Turn on to enable initialization information
27#define DEBUG_INIT 0
28
Romain Guyc15008e2010-11-10 11:59:15 -080029// Turn on to enable memory usage summary on each frame
30#define DEBUG_MEMORY_USAGE 0
31
Romain Guybdf76092011-07-18 15:00:43 -070032// Turn on to enable debugging of cache flushes
Romain Guy9c10ab02012-02-22 14:34:58 -080033#define DEBUG_CACHE_FLUSH 0
Romain Guybdf76092011-07-18 15:00:43 -070034
Romain Guyaaceeb02011-03-23 19:56:13 -070035// Turn on to enable layers debugging when rendered as regions
Romain Guyc15008e2010-11-10 11:59:15 -080036#define DEBUG_LAYERS_AS_REGIONS 0
37
Romain Guy735738c2012-12-03 12:34:51 -080038// Turn on to enable debugging when the clip is not a rect
39#define DEBUG_CLIP_REGIONS 0
40
Romain Guyc15008e2010-11-10 11:59:15 -080041// Turn on to display debug info about vertex/fragment shaders
42#define DEBUG_PROGRAMS 0
43
44// Turn on to display info about layers
45#define DEBUG_LAYERS 0
46
Romain Guy8d4aeb72013-02-12 16:08:55 -080047// Turn on to display info about render buffers
48#define DEBUG_RENDER_BUFFERS 0
49
Romain Guy3bbacf22013-02-06 16:51:04 -080050// Turn on to make stencil operations easier to debug
Romain Guy3ff0bfd2013-02-25 14:15:37 -080051// (writes 255 instead of 1 in the buffer, forces 8 bit stencil)
Romain Guy3bbacf22013-02-06 16:51:04 -080052#define DEBUG_STENCIL 0
53
Romain Guyaaceeb02011-03-23 19:56:13 -070054// Turn on to display debug info about 9patch objects
Romain Guyc15008e2010-11-10 11:59:15 -080055#define DEBUG_PATCHES 0
Romain Guyf504a2f2011-05-26 16:40:55 -070056// Turn on to "explode" 9patch objects
57#define DEBUG_EXPLODE_PATCHES 0
Romain Guya5ef39a2010-12-03 16:48:20 -080058// Turn on to display vertex and tex coords data about 9patch objects
59// This flag requires DEBUG_PATCHES to be turned on
60#define DEBUG_PATCHES_VERTICES 0
Romain Guyfb13abd2011-01-16 15:16:38 -080061// Turn on to display vertex and tex coords data used by empty quads
62// in 9patch objects
63// This flag requires DEBUG_PATCHES to be turned on
64#define DEBUG_PATCHES_EMPTY_VERTICES 0
Romain Guyc15008e2010-11-10 11:59:15 -080065
Romain Guy01d58e42011-01-19 21:54:02 -080066// Turn on to display debug info about shapes
Romain Guyc46d07a2013-03-15 19:06:39 -070067#define DEBUG_PATHS 0
Romain Guy01d58e42011-01-19 21:54:02 -080068
Romain Guyc15008e2010-11-10 11:59:15 -080069// Turn on to display debug info about textures
70#define DEBUG_TEXTURES 0
71
Romain Guy1fc883b2011-01-12 14:30:59 -080072// Turn on to display debug info about the layer renderer
73#define DEBUG_LAYER_RENDERER 0
74
Romain Guyb6294902012-02-02 15:13:18 -080075// Turn on to enable additional debugging in the font renderers
76#define DEBUG_FONT_RENDERER 0
77
Chris Craikc3566d02013-02-04 16:16:33 -080078// Turn on to log draw operation batching and deferral information
79#define DEBUG_DEFER 0
80
Romain Guyffac7fc2011-01-13 17:21:49 -080081// Turn on to dump display list state
82#define DEBUG_DISPLAY_LIST 0
83
Romain Guy8a4ac612012-07-17 17:32:48 -070084// Turn on to insert an event marker for each display list op
85#define DEBUG_DISPLAY_LIST_OPS_AS_EVENTS 0
86
Chris Craik527a3aa2013-03-04 10:19:31 -080087// Turn on to highlight drawing batches and merged batches with different colors
88#define DEBUG_MERGE_BEHAVIOR 0
89
Romain Guyc9855a52011-01-21 21:14:15 -080090#if DEBUG_INIT
Steve Block5baa3a62011-12-20 16:23:08 +000091 #define INIT_LOGD(...) ALOGD(__VA_ARGS__)
Romain Guyc9855a52011-01-21 21:14:15 -080092#else
93 #define INIT_LOGD(...)
94#endif
95
Romain Guyc15008e2010-11-10 11:59:15 -080096#endif // ANDROID_HWUI_DEBUG_H