intel/common: provide a helper for urb setup comparison

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26920>
This commit is contained in:
Tapani Pälli
2024-01-10 07:34:43 +02:00
committed by Marge Bot
parent a1b885b482
commit 829e4fe877

View File

@@ -119,6 +119,20 @@ void intel_get_urb_config(const struct intel_device_info *devinfo,
enum intel_urb_deref_block_size *deref_block_size,
bool *constrained);
/* Returns if URB changed for given shader stage. */
static inline bool
intel_urb_setup_changed(const struct intel_urb_config *a,
const struct intel_urb_config *b,
gl_shader_stage stage)
{
if (a->size[stage] != b->size[stage] ||
a->entries[stage] != b->entries[stage] ||
a->start[stage] != b->start[stage])
return true;
return false;
}
struct intel_mesh_urb_allocation {
unsigned task_entries;
unsigned task_entry_size_64b;