Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
John Reck | 975591a | 2016-01-22 16:28:07 -0800 | [diff] [blame] | 20 | #define DEBUG_LEVEL_HIGH 3 |
| 21 | #define DEBUG_LEVEL_MODERATE 2 |
| 22 | #define DEBUG_LEVEL_LOW 1 |
| 23 | #define DEBUG_LEVEL_NONE 0 |
| 24 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 25 | // Turn on to check for OpenGL errors on each frame |
John Reck | 975591a | 2016-01-22 16:28:07 -0800 | [diff] [blame] | 26 | // Note DEBUG_LEVEL_HIGH for DEBUG_OPENGL is only setable by enabling |
| 27 | // HWUI_ENABLE_OPENGL_VALIDATION when building HWUI. Similarly if |
| 28 | // HWUI_ENABLE_OPENGL_VALIDATION is set then this is always DEBUG_LEVEL_HIGH |
| 29 | #ifndef DEBUG_OPENGL |
| 30 | #define DEBUG_OPENGL DEBUG_LEVEL_LOW |
| 31 | #endif |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 32 | |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 33 | // Turn on to enable initialization information |
| 34 | #define DEBUG_INIT 0 |
| 35 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 36 | // Turn on to enable memory usage summary on each frame |
| 37 | #define DEBUG_MEMORY_USAGE 0 |
| 38 | |
Romain Guy | bdf7609 | 2011-07-18 15:00:43 -0700 | [diff] [blame] | 39 | // Turn on to enable debugging of cache flushes |
Romain Guy | 9c10ab0 | 2012-02-22 14:34:58 -0800 | [diff] [blame] | 40 | #define DEBUG_CACHE_FLUSH 0 |
Romain Guy | bdf7609 | 2011-07-18 15:00:43 -0700 | [diff] [blame] | 41 | |
Romain Guy | aaceeb0 | 2011-03-23 19:56:13 -0700 | [diff] [blame] | 42 | // Turn on to enable layers debugging when rendered as regions |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 43 | #define DEBUG_LAYERS_AS_REGIONS 0 |
| 44 | |
Romain Guy | 735738c | 2012-12-03 12:34:51 -0800 | [diff] [blame] | 45 | // Turn on to enable debugging when the clip is not a rect |
| 46 | #define DEBUG_CLIP_REGIONS 0 |
| 47 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 48 | // Turn on to display debug info about vertex/fragment shaders |
| 49 | #define DEBUG_PROGRAMS 0 |
| 50 | |
| 51 | // Turn on to display info about layers |
| 52 | #define DEBUG_LAYERS 0 |
| 53 | |
Romain Guy | 8d4aeb7 | 2013-02-12 16:08:55 -0800 | [diff] [blame] | 54 | // Turn on to display info about render buffers |
| 55 | #define DEBUG_RENDER_BUFFERS 0 |
| 56 | |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 57 | // Turn on to make stencil operations easier to debug |
Romain Guy | 3ff0bfd | 2013-02-25 14:15:37 -0800 | [diff] [blame] | 58 | // (writes 255 instead of 1 in the buffer, forces 8 bit stencil) |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 59 | #define DEBUG_STENCIL 0 |
| 60 | |
Romain Guy | aaceeb0 | 2011-03-23 19:56:13 -0700 | [diff] [blame] | 61 | // Turn on to display debug info about 9patch objects |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 62 | #define DEBUG_PATCHES 0 |
Romain Guy | a5ef39a | 2010-12-03 16:48:20 -0800 | [diff] [blame] | 63 | // Turn on to display vertex and tex coords data about 9patch objects |
| 64 | // This flag requires DEBUG_PATCHES to be turned on |
| 65 | #define DEBUG_PATCHES_VERTICES 0 |
Romain Guy | fb13abd | 2011-01-16 15:16:38 -0800 | [diff] [blame] | 66 | // Turn on to display vertex and tex coords data used by empty quads |
| 67 | // in 9patch objects |
| 68 | // This flag requires DEBUG_PATCHES to be turned on |
| 69 | #define DEBUG_PATCHES_EMPTY_VERTICES 0 |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 70 | |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 71 | // Turn on to display debug info about shapes |
Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 72 | #define DEBUG_PATHS 0 |
Romain Guy | 01d58e4 | 2011-01-19 21:54:02 -0800 | [diff] [blame] | 73 | |
Romain Guy | c15008e | 2010-11-10 11:59:15 -0800 | [diff] [blame] | 74 | // Turn on to display debug info about textures |
| 75 | #define DEBUG_TEXTURES 0 |
| 76 | |
Romain Guy | 1fc883b | 2011-01-12 14:30:59 -0800 | [diff] [blame] | 77 | // Turn on to display debug info about the layer renderer |
| 78 | #define DEBUG_LAYER_RENDERER 0 |
| 79 | |
Romain Guy | b629490 | 2012-02-02 15:13:18 -0800 | [diff] [blame] | 80 | // Turn on to enable additional debugging in the font renderers |
| 81 | #define DEBUG_FONT_RENDERER 0 |
| 82 | |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 83 | // Turn on to log draw operation batching and deferral information |
| 84 | #define DEBUG_DEFER 0 |
| 85 | |
Romain Guy | ffac7fc | 2011-01-13 17:21:49 -0800 | [diff] [blame] | 86 | // Turn on to dump display list state |
| 87 | #define DEBUG_DISPLAY_LIST 0 |
| 88 | |
Romain Guy | 8a4ac61 | 2012-07-17 17:32:48 -0700 | [diff] [blame] | 89 | // Turn on to insert an event marker for each display list op |
| 90 | #define DEBUG_DISPLAY_LIST_OPS_AS_EVENTS 0 |
| 91 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 92 | // Turn on to insert detailed event markers |
| 93 | #define DEBUG_DETAILED_EVENTS 0 |
| 94 | |
Chris Craik | 527a3aa | 2013-03-04 10:19:31 -0800 | [diff] [blame] | 95 | // Turn on to highlight drawing batches and merged batches with different colors |
| 96 | #define DEBUG_MERGE_BEHAVIOR 0 |
| 97 | |
ztenghui | 55bfb4e | 2013-12-03 10:38:55 -0800 | [diff] [blame] | 98 | // Turn on to enable debugging shadow |
| 99 | #define DEBUG_SHADOW 0 |
| 100 | |
Teng-Hui Zhu | 85d9952 | 2016-04-25 14:23:40 -0700 | [diff] [blame] | 101 | // Turn on to enable debugging vector drawable |
| 102 | #define DEBUG_VECTOR_DRAWABLE 0 |
| 103 | |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 104 | #if DEBUG_INIT |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 105 | #define INIT_LOGD(...) ALOGD(__VA_ARGS__) |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 106 | #else |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 107 | #define INIT_LOGD(...) |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 108 | #endif |
| 109 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 110 | #endif // ANDROID_HWUI_DEBUG_H |