diff options
author | Caio Marcelo de Oliveira Filho <[email protected]> | 2020-03-12 14:27:13 -0700 |
---|---|---|
committer | Caio Marcelo de Oliveira Filho <[email protected]> | 2020-03-17 08:24:46 -0700 |
commit | 3dd0d12aa5fefa94123269a541c94cdf57599e34 (patch) | |
tree | 03b44394ac366cb87770079d0c3aef71695fdfb2 /src/mesa | |
parent | 4c35bc7e612f806d2e8a8a7126ddcdf45597806a (diff) |
intel/blorp: Plumb the stage through blorp upload_shader
Vulkan uses that for its own upload function -- even though for BLORP
it doesn't really currently care. Neither Iris and i965 makes use of
it at the moment.
Reviewed-by: Jason Ekstrand <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4170>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4170>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index 33729430638..93ca63ff1a2 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -53,7 +53,7 @@ brw_blorp_lookup_shader(struct blorp_batch *batch, } static bool -brw_blorp_upload_shader(struct blorp_batch *batch, +brw_blorp_upload_shader(struct blorp_batch *batch, uint32_t stage, const void *key, uint32_t key_size, const void *kernel, uint32_t kernel_size, const struct brw_stage_prog_data *prog_data, |