Re: [Mesa-dev] [PATCH V3 17/19] i965/vs: add support for ir_txf_ms on Gen6+

2013-02-12 Thread Eric Anholt
Chris Forbes writes: > On Gen6, lower this to `ld` with lod=0 and an extra sample_index > parameter. > > On Gen7, use `ld2dms`. This takes an additional MCS parameter to support > compressed multisample surfaces, but we're not enabling them for > multisample textures for now, so it's always ignor

[Mesa-dev] [PATCH V3 17/19] i965/vs: add support for ir_txf_ms on Gen6+

2013-02-08 Thread Chris Forbes
On Gen6, lower this to `ld` with lod=0 and an extra sample_index parameter. On Gen7, use `ld2dms`. This takes an additional MCS parameter to support compressed multisample surfaces, but we're not enabling them for multisample textures for now, so it's always ignored and can be safely omitted. V2: