diff options
author | Marek Olšák <[email protected]> | 2015-07-10 23:29:04 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-07-23 00:59:23 +0200 |
commit | e4d738f6c6b98a78830c10ab7b89704d847637a5 (patch) | |
tree | f52a5f132e87ff48aa22228958559d09edf03097 /src/gallium/drivers/radeonsi/si_shader.h | |
parent | 2369dc83826c7b1f413ff78f55e460c38d7a0660 (diff) |
radeonsi: remove redundant parameter in si_shader_binary_read
Reviewed-by: Tom Stellard <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h index 8d309b4eb37..1e8b52b8e58 100644 --- a/src/gallium/drivers/radeonsi/si_shader.h +++ b/src/gallium/drivers/radeonsi/si_shader.h @@ -191,8 +191,7 @@ int si_compile_llvm(struct si_screen *sscreen, struct si_shader *shader, LLVMTargetMachineRef tm, LLVMModuleRef mod); void si_shader_destroy(struct pipe_context *ctx, struct si_shader *shader); unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index); -int si_shader_binary_read(struct si_screen *sscreen, struct si_shader *shader, - const struct radeon_shader_binary *binary); +int si_shader_binary_read(struct si_screen *sscreen, struct si_shader *shader); void si_shader_apply_scratch_relocs(struct si_context *sctx, struct si_shader *shader, uint64_t scratch_va); |