Re: [Mesa-dev] [PATCH] radv/meta: Set num_components on image_store intrinsics

2018-08-30 Thread Bas Nieuwenhuizen
On Thu, Aug 30, 2018 at 9:17 AM Samuel Pitoiset wrote: > > > > On 8/30/18 2:49 AM, Jason Ekstrand wrote: > > Now that image load/store intrinsics are variable-width, we need to set > > num_components accordingly. In 15d39f474b890, both glsl_to_nir and > > spirv_to_nir were updated to properly

Re: [Mesa-dev] [PATCH] radv/meta: Set num_components on image_store intrinsics

2018-08-30 Thread Samuel Pitoiset
On 8/30/18 2:49 AM, Jason Ekstrand wrote: Now that image load/store intrinsics are variable-width, we need to set num_components accordingly. In 15d39f474b890, both glsl_to_nir and spirv_to_nir were updated to properly set num_components but radv meta was left behind. Fixes: 15d39f474b890

[Mesa-dev] [PATCH] radv/meta: Set num_components on image_store intrinsics

2018-08-29 Thread Jason Ekstrand
Now that image load/store intrinsics are variable-width, we need to set num_components accordingly. In 15d39f474b890, both glsl_to_nir and spirv_to_nir were updated to properly set num_components but radv meta was left behind. Fixes: 15d39f474b890 "nir: Make image load/store intrinsics..." ---