cell: move debug-related declarations

This commit is contained in:
Brian Paul 2008-09-26 10:10:08 -06:00
parent f45d39fa34
commit bb01c1a78e
2 changed files with 8 additions and 2 deletions

View File

@ -34,8 +34,8 @@
#define DEBUG 1
#if DEBUG
boolean Debug = FALSE;
boolean force_fragment_ops_fallback = TRUE;
extern boolean Debug;
extern boolean force_fragment_ops_fallback;
/* These debug macros use the unusual construction ", ##__VA_ARGS__"
* which expands to the expected comma + args if variadic arguments

View File

@ -58,6 +58,12 @@ struct spu_global spu;
struct spu_vs_context draw;
#if DEBUG
boolean Debug = FALSE;
boolean force_fragment_ops_fallback = TRUE;
#endif
/**
* Buffers containing dynamically generated SPU code:
*/