aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600
diff options
context:
space:
mode:
authorKarol Herbst <[email protected]>2019-05-11 14:26:06 +0200
committerKarol Herbst <[email protected]>2019-09-21 08:28:32 +0000
commitf3ba98cb18b30bead9ae26716daadce77030c1a0 (patch)
treee2ac12c470c19cfd547e2b23f442b516c8239267 /src/gallium/drivers/r600
parentb6c47abe3e9c26c18429a385d5b7a938ed92ab7f (diff)
rename pipe_llvm_program_header to pipe_binary_program_header
We want to use it for other formats as well, so give it a more generic name Signed-off-by: Karol Herbst <[email protected]> Reviewed-by: Francisco Jerez <[email protected]> Reviewed-by: Pierre Moreau <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r--src/gallium/drivers/r600/evergreen_compute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/evergreen_compute.c b/src/gallium/drivers/r600/evergreen_compute.c
index 0f6c5c2f2ff..419738eec70 100644
--- a/src/gallium/drivers/r600/evergreen_compute.c
+++ b/src/gallium/drivers/r600/evergreen_compute.c
@@ -429,7 +429,7 @@ static void *evergreen_create_compute_state(struct pipe_context *ctx,
struct r600_context *rctx = (struct r600_context *)ctx;
struct r600_pipe_compute *shader = CALLOC_STRUCT(r600_pipe_compute);
#ifdef HAVE_OPENCL
- const struct pipe_llvm_program_header *header;
+ const struct pipe_binary_program_header *header;
void *p;
boolean use_kill;
#endif