diff options
author | Nicolai Hähnle <[email protected]> | 2019-07-01 16:57:48 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2019-07-04 10:52:26 +0000 |
commit | 510e74ff48d035d1c3f4112738132b9d8d823c93 (patch) | |
tree | 942c563dd28748c0a17f7a4b1acad7fc8921f4b2 /src/amd/common/ac_binary.h | |
parent | b398230e6d7412e468985dcc9c7804e8e637674b (diff) |
amd/common: removed unused ac_shader_binary functions
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/amd/common/ac_binary.h')
-rw-r--r-- | src/amd/common/ac_binary.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/amd/common/ac_binary.h b/src/amd/common/ac_binary.h index b91ecb4317b..3ac8562024d 100644 --- a/src/amd/common/ac_binary.h +++ b/src/amd/common/ac_binary.h @@ -84,29 +84,9 @@ struct ac_shader_config { unsigned rsrc2; }; -/* - * Parse the elf binary stored in \p elf_data and create a - * ac_shader_binary object. - */ -bool ac_elf_read(const char *elf_data, unsigned elf_size, - struct ac_shader_binary *binary); - -/** - * @returns A pointer to the start of the configuration information for - * the function starting at \p symbol_offset of the binary. - */ -const unsigned char *ac_shader_binary_config_start( - const struct ac_shader_binary *binary, - uint64_t symbol_offset); - void ac_parse_shader_binary_config(const char *data, size_t nbytes, bool really_needs_scratch, struct ac_shader_config *conf); -void ac_shader_binary_read_config(struct ac_shader_binary *binary, - struct ac_shader_config *conf, - unsigned symbol_offset, - bool supports_spill); -void ac_shader_binary_clean(struct ac_shader_binary *b); #ifdef __cplusplus } |