[Mesa-dev] [PATCH mesa 1/3] tgsi: Fix decl.Atomic and .Shared not propagating when parsing tgsi text

Ilia Mirkin imirkin at alum.mit.edu
Thu Mar 10 15:24:11 UTC 2016


Reviewed-by: Ilia Mirkin <imirkin at alum.mit.edu>

On Thu, Mar 10, 2016 at 10:14 AM, Hans de Goede <hdegoede at redhat.com> wrote:
> When support for decl.Atomic and .Shared was added, tgsi_build_declaration
> was not updated to propagate these properly.
>
> Signed-off-by: Hans de Goede <hdegoede at redhat.com>
> ---
>  src/gallium/auxiliary/tgsi/tgsi_build.c | 6 ++++++
>  1 file changed, 6 insertions(+)
>
> diff --git a/src/gallium/auxiliary/tgsi/tgsi_build.c b/src/gallium/auxiliary/tgsi/tgsi_build.c
> index cfe9b92..c420ae1 100644
> --- a/src/gallium/auxiliary/tgsi/tgsi_build.c
> +++ b/src/gallium/auxiliary/tgsi/tgsi_build.c
> @@ -127,6 +127,8 @@ tgsi_build_declaration(
>     unsigned invariant,
>     unsigned local,
>     unsigned array,
> +   unsigned atomic,
> +   unsigned shared,
>     struct tgsi_header *header )
>  {
>     struct tgsi_declaration declaration;
> @@ -143,6 +145,8 @@ tgsi_build_declaration(
>     declaration.Invariant = invariant;
>     declaration.Local = local;
>     declaration.Array = array;
> +   declaration.Atomic = atomic;
> +   declaration.Shared = shared;
>     header_bodysize_grow( header );
>
>     return declaration;
> @@ -401,6 +405,8 @@ tgsi_build_full_declaration(
>        full_decl->Declaration.Invariant,
>        full_decl->Declaration.Local,
>        full_decl->Declaration.Array,
> +      full_decl->Declaration.Atomic,
> +      full_decl->Declaration.Shared,
>        header );
>
>     if (maxsize <= size)
> --
> 2.7.2
>


More information about the mesa-dev mailing list