~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/frontends/nine/nine_debug.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
                    const char *fmt,
64
64
                    ... )
65
65
{
66
 
    static boolean first = TRUE;
 
66
    static bool first = true;
67
67
    static unsigned long dbg_flags = DBG_ERROR | DBG_WARN;
68
68
    unsigned long tid = 0;
69
69
 
70
70
    if (first) {
71
 
        first = FALSE;
 
71
        first = false;
72
72
        dbg_flags |= debug_get_flags_option("NINE_DEBUG", nine_debug_flags, 0);
73
73
    }
74
74