2010-11-10 11:59:15 -08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_HWUI_DEBUG_H
|
|
|
|
#define ANDROID_HWUI_DEBUG_H
|
|
|
|
|
2016-01-22 16:28:07 -08:00
|
|
|
#define DEBUG_LEVEL_HIGH 3
|
|
|
|
#define DEBUG_LEVEL_MODERATE 2
|
|
|
|
#define DEBUG_LEVEL_LOW 1
|
|
|
|
#define DEBUG_LEVEL_NONE 0
|
|
|
|
|
2010-11-10 11:59:15 -08:00
|
|
|
// Turn on to check for OpenGL errors on each frame
|
2016-01-22 16:28:07 -08:00
|
|
|
// Note DEBUG_LEVEL_HIGH for DEBUG_OPENGL is only setable by enabling
|
|
|
|
// HWUI_ENABLE_OPENGL_VALIDATION when building HWUI. Similarly if
|
|
|
|
// HWUI_ENABLE_OPENGL_VALIDATION is set then this is always DEBUG_LEVEL_HIGH
|
|
|
|
#ifndef DEBUG_OPENGL
|
|
|
|
#define DEBUG_OPENGL DEBUG_LEVEL_LOW
|
|
|
|
#endif
|
2010-11-10 11:59:15 -08:00
|
|
|
|
2011-01-21 21:14:15 -08:00
|
|
|
// Turn on to enable initialization information
|
|
|
|
#define DEBUG_INIT 0
|
|
|
|
|
2010-11-10 11:59:15 -08:00
|
|
|
// Turn on to enable memory usage summary on each frame
|
|
|
|
#define DEBUG_MEMORY_USAGE 0
|
|
|
|
|
2011-07-18 15:00:43 -07:00
|
|
|
// Turn on to enable debugging of cache flushes
|
2012-02-22 14:34:58 -08:00
|
|
|
#define DEBUG_CACHE_FLUSH 0
|
2011-07-18 15:00:43 -07:00
|
|
|
|
2011-03-23 19:56:13 -07:00
|
|
|
// Turn on to enable layers debugging when rendered as regions
|
2010-11-10 11:59:15 -08:00
|
|
|
#define DEBUG_LAYERS_AS_REGIONS 0
|
|
|
|
|
2012-12-03 12:34:51 -08:00
|
|
|
// Turn on to enable debugging when the clip is not a rect
|
|
|
|
#define DEBUG_CLIP_REGIONS 0
|
|
|
|
|
2010-11-10 11:59:15 -08:00
|
|
|
// Turn on to display debug info about vertex/fragment shaders
|
|
|
|
#define DEBUG_PROGRAMS 0
|
|
|
|
|
|
|
|
// Turn on to display info about layers
|
|
|
|
#define DEBUG_LAYERS 0
|
|
|
|
|
2013-02-12 16:08:55 -08:00
|
|
|
// Turn on to display info about render buffers
|
|
|
|
#define DEBUG_RENDER_BUFFERS 0
|
|
|
|
|
2013-02-06 16:51:04 -08:00
|
|
|
// Turn on to make stencil operations easier to debug
|
2013-02-25 14:15:37 -08:00
|
|
|
// (writes 255 instead of 1 in the buffer, forces 8 bit stencil)
|
2013-02-06 16:51:04 -08:00
|
|
|
#define DEBUG_STENCIL 0
|
|
|
|
|
2011-03-23 19:56:13 -07:00
|
|
|
// Turn on to display debug info about 9patch objects
|
2010-11-10 11:59:15 -08:00
|
|
|
#define DEBUG_PATCHES 0
|
2010-12-03 16:48:20 -08:00
|
|
|
// Turn on to display vertex and tex coords data about 9patch objects
|
|
|
|
// This flag requires DEBUG_PATCHES to be turned on
|
|
|
|
#define DEBUG_PATCHES_VERTICES 0
|
2011-01-16 15:16:38 -08:00
|
|
|
// Turn on to display vertex and tex coords data used by empty quads
|
|
|
|
// in 9patch objects
|
|
|
|
// This flag requires DEBUG_PATCHES to be turned on
|
|
|
|
#define DEBUG_PATCHES_EMPTY_VERTICES 0
|
2010-11-10 11:59:15 -08:00
|
|
|
|
2011-01-19 21:54:02 -08:00
|
|
|
// Turn on to display debug info about shapes
|
2013-03-15 19:06:39 -07:00
|
|
|
#define DEBUG_PATHS 0
|
2011-01-19 21:54:02 -08:00
|
|
|
|
2010-11-10 11:59:15 -08:00
|
|
|
// Turn on to display debug info about textures
|
|
|
|
#define DEBUG_TEXTURES 0
|
|
|
|
|
2011-01-12 14:30:59 -08:00
|
|
|
// Turn on to display debug info about the layer renderer
|
|
|
|
#define DEBUG_LAYER_RENDERER 0
|
|
|
|
|
2012-02-02 15:13:18 -08:00
|
|
|
// Turn on to enable additional debugging in the font renderers
|
|
|
|
#define DEBUG_FONT_RENDERER 0
|
|
|
|
|
2013-02-04 16:16:33 -08:00
|
|
|
// Turn on to log draw operation batching and deferral information
|
|
|
|
#define DEBUG_DEFER 0
|
|
|
|
|
2011-01-13 17:21:49 -08:00
|
|
|
// Turn on to dump display list state
|
|
|
|
#define DEBUG_DISPLAY_LIST 0
|
|
|
|
|
2012-07-17 17:32:48 -07:00
|
|
|
// Turn on to insert an event marker for each display list op
|
|
|
|
#define DEBUG_DISPLAY_LIST_OPS_AS_EVENTS 0
|
|
|
|
|
2014-07-29 10:35:13 -07:00
|
|
|
// Turn on to insert detailed event markers
|
|
|
|
#define DEBUG_DETAILED_EVENTS 0
|
|
|
|
|
2013-03-04 10:19:31 -08:00
|
|
|
// Turn on to highlight drawing batches and merged batches with different colors
|
|
|
|
#define DEBUG_MERGE_BEHAVIOR 0
|
|
|
|
|
2013-12-03 10:38:55 -08:00
|
|
|
// Turn on to enable debugging shadow
|
|
|
|
#define DEBUG_SHADOW 0
|
|
|
|
|
2011-01-21 21:14:15 -08:00
|
|
|
#if DEBUG_INIT
|
2011-12-20 16:23:08 +00:00
|
|
|
#define INIT_LOGD(...) ALOGD(__VA_ARGS__)
|
2011-01-21 21:14:15 -08:00
|
|
|
#else
|
|
|
|
#define INIT_LOGD(...)
|
|
|
|
#endif
|
|
|
|
|
2010-11-10 11:59:15 -08:00
|
|
|
#endif // ANDROID_HWUI_DEBUG_H
|