[Mesa-dev] [PATCH 01/15] i965: bring back type_size_vec4_times_4()

Kenneth Graunke kenneth at whitecape.org
Wed Jul 20 18:15:15 UTC 2016


On Tuesday, July 19, 2016 4:33:13 PM PDT Timothy Arceri wrote:
> We will use this for output varyings. To make component
> packing simpler we will just treat all varyings as vec4s.
> ---
>  src/mesa/drivers/dri/i965/brw_fs.cpp   | 13 +++++++++++++
>  src/mesa/drivers/dri/i965/brw_shader.h |  1 +
>  2 files changed, 14 insertions(+)
> 
> diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
> index 120d6dd..547a0c2 100644
> --- a/src/mesa/drivers/dri/i965/brw_fs.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
> @@ -506,6 +506,19 @@ type_size_scalar(const struct glsl_type *type)
>     return 0;
>  }
>  
> +/**
> + * Returns the number of scalar components needed to store type, assuming
> + * that vectors are padded out to vec4.
> + *
> + * This has the packing rules of type_size_vec4(), but counts components
> + * similar to type_size_scalar().
> + */
> +extern "C" int
> +type_size_vec4_times_4(const struct glsl_type *type)
> +{
> + return 4 * type_size_vec4(type);

Should be three spaces here.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: This is a digitally signed message part.
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20160720/f283a5ef/attachment.sig>


More information about the mesa-dev mailing list