search for: nvc1_3d_class

Displaying 2 results from an estimated 2 matches for "nvc1_3d_class".

Did you mean: nvc0_3d_class
2014 May 27
2
[PATCH 1/2] nvc0: add GK20A 3D class
On Tue, May 27, 2014 at 12:59 AM, Alexandre Courbot <acourbot at nvidia.com> wrote: > GK20A is mostly compatible with GK104, but features a new 3D > class. Add it to the relevant header and use it when GK20A is > detected. > > Signed-off-by: Alexandre Courbot <acourbot at nvidia.com> > --- > src/gallium/drivers/nouveau/nv_object.xml.h | 1 + >
2014 May 27
0
[PATCH 1/2] nvc0: add GK20A 3D class
...gt;= as well? But I guess the two could be > disconnected. Up to you, just thought I'd bring it up. Right below we have the following being done: switch (dev->chipset) { case 0xc8: obj_class = NVC8_3D_CLASS; break; case 0xc1: obj_class = NVC1_3D_CLASS; break; default: obj_class = NVC0_3D_CLASS; break; } Shouldn't we try to be consistent with this more local example instead?