llvmpipe: add compute debug option

Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
Dave Airlie
2019-08-27 14:35:56 +10:00
parent 25f46ae9aa
commit a792c5ae3e
2 changed files with 2 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ st_print_current(void);
#define DEBUG_FENCE 0x2000
#define DEBUG_MEM 0x4000
#define DEBUG_FS 0x8000
#define DEBUG_CS 0x10000
/* Performance flags. These are active even on release builds.
*/

View File

@@ -69,6 +69,7 @@ static const struct debug_named_value lp_debug_flags[] = {
{ "fence", DEBUG_FENCE, NULL },
{ "mem", DEBUG_MEM, NULL },
{ "fs", DEBUG_FS, NULL },
{ "cs", DEBUG_CS, NULL },
DEBUG_NAMED_VALUE_END
};
#endif