diff options
author | Jason Ekstrand <[email protected]> | 2017-01-12 17:07:08 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-01-13 16:31:17 -0800 |
commit | 99d497c5b6912c5a8b2fec48084e3e00c7c80395 (patch) | |
tree | 43d893b1f5904348a60166561ba57c389777b9ab /src/intel/vulkan/anv_pipeline.c | |
parent | 56ee2df4bf9b1e8c26cf8689f5ef20237c95466b (diff) |
anv/pipeline: Replace get_fs_input_map with get_last_vue_prog_data
This lets us delete a helper from genX_pipeline.c
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_pipeline.c')
-rw-r--r-- | src/intel/vulkan/anv_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 7d939ebabe9..2060c6d2f60 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -270,7 +270,7 @@ populate_wm_prog_key(const struct anv_pipeline *pipeline, /* TODO: we could set this to 0 based on the information in nir_shader, but * this function is called before spirv_to_nir. */ const struct brw_vue_map *vue_map = - anv_pipeline_get_fs_input_map(pipeline); + &anv_pipeline_get_last_vue_prog_data(pipeline)->vue_map; key->input_slots_valid = vue_map->slots_valid; /* Vulkan doesn't specify a default */ |