mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 07:58:07 +02:00
nir: add glsl_get_std430_base_alignment() helper
This will be used by the nir glsl linker for linking uniforms. Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4050>
This commit is contained in:
parent
1ccfe821b2
commit
a005f1a6e7
2 changed files with 8 additions and 0 deletions
|
|
@ -791,6 +791,12 @@ glsl_get_std140_size(const struct glsl_type *type, bool row_major)
|
|||
return type->std140_size(row_major);
|
||||
}
|
||||
|
||||
unsigned
|
||||
glsl_get_std430_base_alignment(const struct glsl_type *type, bool row_major)
|
||||
{
|
||||
return type->std430_base_alignment(row_major);
|
||||
}
|
||||
|
||||
unsigned
|
||||
glsl_get_explicit_size(const struct glsl_type *type, bool align_to_stride)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -59,6 +59,8 @@ glsl_get_internal_ifc_packing(const struct glsl_type *type,
|
|||
unsigned glsl_get_std140_base_alignment(const struct glsl_type *type,
|
||||
bool row_major);
|
||||
unsigned glsl_get_std140_size(const struct glsl_type *type, bool row_major);
|
||||
unsigned glsl_get_std430_base_alignment(const struct glsl_type *type,
|
||||
bool row_major);
|
||||
unsigned glsl_get_explicit_stride(const struct glsl_type *type);
|
||||
const struct glsl_type *glsl_get_array_element(const struct glsl_type *type);
|
||||
const struct glsl_type *glsl_without_array(const struct glsl_type *type);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue