summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/tgsi/util/tgsi_dump.h
blob: ca83bdef206675c647b22acb0d81cdb7f0d0ecfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#if !defined TGSI_DUMP_H
#define TGSI_DUMP_H

#if defined __cplusplus
extern "C" {
#endif

#define TGSI_DUMP_VERBOSE       1
#define TGSI_DUMP_NO_IGNORED    2
#define TGSI_DUMP_NO_DEFAULT    4

void
tgsi_dump(
   const struct tgsi_token *tokens,
   unsigned                flags );

struct tgsi_full_immediate;
struct tgsi_full_instruction;
struct tgsi_full_declaration;

void
tgsi_dump_immediate(
   const struct tgsi_full_immediate *imm );

void
tgsi_dump_instruction(
   const struct tgsi_full_instruction  *inst,
   unsigned                      instno );

void
tgsi_dump_declaration(
   const struct tgsi_full_declaration  *decl );


#if defined __cplusplus
}
#endif

#endif /* TGSI_DUMP_H */