mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
nir: Drop nir_shader_get_xfb_info
Reviewed-by: Marek Olšák <marek.olsak@amd.com> Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16750>
This commit is contained in:
parent
7003ff2e3a
commit
64cc35d2ac
2 changed files with 0 additions and 9 deletions
|
|
@ -178,12 +178,6 @@ compare_xfb_output_offsets(const void *_a, const void *_b)
|
|||
return a->offset - b->offset;
|
||||
}
|
||||
|
||||
nir_xfb_info *
|
||||
nir_shader_get_xfb_info(const nir_shader *shader, void *mem_ctx)
|
||||
{
|
||||
return nir_gather_xfb_info_with_varyings(shader, mem_ctx, NULL);
|
||||
}
|
||||
|
||||
void
|
||||
nir_shader_gather_xfb_info(nir_shader *shader)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -74,9 +74,6 @@ nir_xfb_info_size(uint16_t output_count)
|
|||
return sizeof(nir_xfb_info) + sizeof(nir_xfb_output_info) * output_count;
|
||||
}
|
||||
|
||||
nir_xfb_info *
|
||||
nir_shader_get_xfb_info(const nir_shader *shader, void *mem_ctx);
|
||||
|
||||
void nir_shader_gather_xfb_info(nir_shader *shader);
|
||||
|
||||
nir_xfb_info *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue