diff options
author | Alexandre Courbot <[email protected]> | 2017-03-30 19:05:57 +0900 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2017-05-30 08:27:00 -0400 |
commit | 76aa1bbb8919c3cc2b9cb5467640bf996b8d31dc (patch) | |
tree | 12853b699d6afdd974d5497f82a20610ea625805 /src/gallium/drivers | |
parent | 106b2786b66d1400899718ba98ce1d5311b8e712 (diff) |
nvc0: support for GP10B
GP10B uses the same 3D class as GP100.
Signed-off-by: Alexandre Courbot <[email protected]>
Acked-by: Samuel Pitoiset <[email protected]>
Acked-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index e1d0d1c2c49..f2ae4f3ae3b 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -910,6 +910,7 @@ nvc0_screen_create(struct nouveau_device *dev) case 0x130: switch (dev->chipset) { case 0x130: + case 0x13b: obj_class = GP100_3D_CLASS; break; default: |