Re: [Mesa-dev] [PATCH 2/7] nir: Add a lowering pass for YUV textures

2016-05-05 Thread Kristian Høgsberg
On Thu, May 5, 2016 at 5:37 PM, Jason Ekstrand wrote: > > > On Thu, May 5, 2016 at 5:04 PM, Kristian Høgsberg wrote: >> >> From: Kristian Høgsberg Kristensen >> >> This lowers sampling from YUV textures to 1) one or more texture >> instructions to sample each plane and 2) color space conversion

Re: [Mesa-dev] [PATCH 2/7] nir: Add a lowering pass for YUV textures

2016-05-05 Thread Jason Ekstrand
On Thu, May 5, 2016 at 5:04 PM, Kristian Høgsberg wrote: > From: Kristian Høgsberg Kristensen > > This lowers sampling from YUV textures to 1) one or more texture > instructions to sample each plane and 2) color space conversion to RGB. > --- > src/compiler/nir/nir.h | 7 +++ > src/

[Mesa-dev] [PATCH 2/7] nir: Add a lowering pass for YUV textures

2016-05-05 Thread Kristian Høgsberg
From: Kristian Høgsberg Kristensen This lowers sampling from YUV textures to 1) one or more texture instructions to sample each plane and 2) color space conversion to RGB. --- src/compiler/nir/nir.h | 7 +++ src/compiler/nir/nir_lower_tex.c | 118 +