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/intel/blorp/blorp.h | |
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/intel/blorp/blorp.h')
-rw-r--r-- | src/intel/blorp/blorp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/blorp/blorp.h b/src/intel/blorp/blorp.h index afee0a96a8c..9ab537177fb 100644 --- a/src/intel/blorp/blorp.h +++ b/src/intel/blorp/blorp.h @@ -49,6 +49,7 @@ struct blorp_context { const void *key, uint32_t key_size, uint32_t *kernel_out, void *prog_data_out); bool (*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, |