~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/driver_trace/tr_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:
34
34
#define TR_DUMP_H
35
35
 
36
36
 
37
 
#include "pipe/p_compiler.h"
 
37
#include "util/compiler.h"
38
38
#include "util/format/u_formats.h"
39
39
 
40
40
struct pipe_resource;
82
82
void trace_dump_arg_end(void);
83
83
void trace_dump_ret_begin(void);
84
84
void trace_dump_ret_end(void);
85
 
void trace_dump_bool(int value);
86
 
void trace_dump_int(long long int value);
87
 
void trace_dump_uint(long long unsigned value);
 
85
void trace_dump_bool(bool value);
 
86
void trace_dump_int(int64_t value);
 
87
void trace_dump_uint(uint64_t value);
88
88
void trace_dump_float(double value);
89
89
void trace_dump_bytes(const void *data, size_t size);
90
90
void trace_dump_box_bytes(const void *data,
91
91
                          struct pipe_resource *resource,
92
92
                          const struct pipe_box *box,
93
93
                          unsigned stride,
94
 
                          unsigned slice_stride);
 
94
                          uint64_t slice_stride);
95
95
void trace_dump_string(const char *str);
96
96
void trace_dump_enum(const char *value);
97
97
void trace_dump_array_begin(void);