Re: [Mesa-dev] [PATCH v2] nvc0: fix bindless multisampled images on Maxwell+

2018-09-17 Thread Ilia Mirkin
On Mon, Sep 17, 2018 at 11:00 AM, Rhys Perry wrote: > NVC0_CB_AUX_BINDLESS_INFO isn't written to on Maxwell+ and it's too small > anyway. > > With these changes, TXQ is used to determine the number of samples and > the coordinate adjustment information looked up in a small array in the > driver co

[Mesa-dev] [PATCH v2] nvc0: fix bindless multisampled images on Maxwell+

2018-09-17 Thread Rhys Perry
NVC0_CB_AUX_BINDLESS_INFO isn't written to on Maxwell+ and it's too small anyway. With these changes, TXQ is used to determine the number of samples and the coordinate adjustment information looked up in a small array in the driver constant buffer. v2: rework to use TXQ and a small array instead