~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/util/u_dump.h

  • 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:
36
36
#define U_DEBUG_DUMP_H_
37
37
 
38
38
 
39
 
#include "pipe/p_compiler.h"
 
39
#include "util/compiler.h"
40
40
#include "pipe/p_state.h"
41
41
 
42
42
#include <stdio.h>
55
55
 */
56
56
 
57
57
const char *
58
 
util_str_blend_factor(unsigned value, boolean shortened);
59
 
 
60
 
const char *
61
 
util_str_blend_func(unsigned value, boolean shortened);
62
 
 
63
 
const char *
64
 
util_str_logicop(unsigned value, boolean shortened);
65
 
 
66
 
const char *
67
 
util_str_func(unsigned value, boolean shortened);
68
 
 
69
 
const char *
70
 
util_str_stencil_op(unsigned value, boolean shortened);
71
 
 
72
 
const char *
73
 
util_str_tex_target(unsigned value, boolean shortened);
74
 
 
75
 
const char *
76
 
util_str_tex_wrap(unsigned value, boolean shortened);
77
 
 
78
 
const char *
79
 
util_str_tex_mipfilter(unsigned value, boolean shortened);
80
 
 
81
 
const char *
82
 
util_str_tex_filter(unsigned value, boolean shortened);
83
 
 
84
 
const char *
85
 
util_str_query_type(unsigned value, boolean shortened);
86
 
 
87
 
const char *
88
 
util_str_query_value_type(unsigned value, boolean shortened);
89
 
 
90
 
const char *
91
 
util_str_prim_mode(unsigned value, boolean shortened);
 
58
util_str_blend_factor(unsigned value, bool shortened);
 
59
 
 
60
const char *
 
61
util_str_blend_func(unsigned value, bool shortened);
 
62
 
 
63
const char *
 
64
util_str_logicop(unsigned value, bool shortened);
 
65
 
 
66
const char *
 
67
util_str_func(unsigned value, bool shortened);
 
68
 
 
69
const char *
 
70
util_str_stencil_op(unsigned value, bool shortened);
 
71
 
 
72
const char *
 
73
util_str_tex_target(unsigned value, bool shortened);
 
74
 
 
75
const char *
 
76
util_str_tex_wrap(unsigned value, bool shortened);
 
77
 
 
78
const char *
 
79
util_str_tex_mipfilter(unsigned value, bool shortened);
 
80
 
 
81
const char *
 
82
util_str_tex_filter(unsigned value, bool shortened);
 
83
 
 
84
const char *
 
85
util_str_query_type(unsigned value, bool shortened);
 
86
 
 
87
const char *
 
88
util_str_query_value_type(unsigned value, bool shortened);
 
89
 
 
90
const char *
 
91
util_str_prim_mode(unsigned value, bool shortened);
92
92
 
93
93
void
94
94
util_dump_ns(FILE *f, uint64_t time);