radeonsi: remove an unused ctx parameter in si_shader_destroy

Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
Marek Olšák
2015-10-09 00:49:13 +02:00
parent 4f4f477d6d
commit c4f086f399
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -469,7 +469,7 @@ static void si_delete_compute_state(struct pipe_context *ctx, void* state){
if (program->kernels) {
for (int i = 0; i < program->num_kernels; i++){
if (program->kernels[i].bo){
si_shader_destroy(ctx, &program->kernels[i]);
si_shader_destroy(&program->kernels[i]);
}
}
FREE(program->kernels);
@@ -482,7 +482,7 @@ static void si_delete_compute_state(struct pipe_context *ctx, void* state){
FREE(program->shader.binary.config);
FREE(program->shader.binary.rodata);
FREE(program->shader.binary.global_symbol_offsets);
si_shader_destroy(ctx, &program->shader);
si_shader_destroy(&program->shader);
#endif
pipe_resource_reference(
+2 -2
View File
@@ -4191,10 +4191,10 @@ out:
return r;
}
void si_shader_destroy(struct pipe_context *ctx, struct si_shader *shader)
void si_shader_destroy(struct si_shader *shader)
{
if (shader->gs_copy_shader)
si_shader_destroy(ctx, shader->gs_copy_shader);
si_shader_destroy(shader->gs_copy_shader);
if (shader->scratch_bo)
r600_resource_reference(&shader->scratch_bo, NULL);
+1 -1
View File
@@ -324,7 +324,7 @@ int si_shader_create(struct si_screen *sscreen, LLVMTargetMachineRef tm,
void si_dump_shader_key(unsigned shader, union si_shader_key *key, FILE *f);
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);
void si_shader_destroy(struct si_shader *shader);
unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index);
int si_shader_binary_upload(struct si_screen *sscreen, struct si_shader *shader);
int si_shader_binary_read(struct si_screen *sscreen, struct si_shader *shader);
@@ -942,7 +942,7 @@ static void si_delete_shader_selector(struct pipe_context *ctx,
break;
}
si_shader_destroy(ctx, p);
si_shader_destroy(p);
free(p);
p = c;
}