From: Ilia Mirkin Date: Mon, 5 Jan 2015 05:33:58 +0000 (-0500) Subject: nvc0: add name to magic number X-Git-Tag: android-x86-4.4-r3~1142 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=21a280f87c5c884eea7a2043d6ed10cdbab57a3e;p=android-x86%2Fexternal-mesa.git nvc0: add name to magic number Signed-off-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 5069e5aca71..1d7caf8c8c5 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -475,8 +475,8 @@ nvc0_magic_3d_init(struct nouveau_pushbuf *push, uint16_t obj_class) BEGIN_NVC0(push, SUBC_3D(0x1610), 1); PUSH_DATA (push, 0xe); - BEGIN_NVC0(push, SUBC_3D(0x164c), 1); - PUSH_DATA (push, 1 << 12); + BEGIN_NVC0(push, NVC0_3D(VERTEX_ID_GEN_MODE), 1); + PUSH_DATA (push, NVC0_3D_VERTEX_ID_GEN_MODE_DRAW_ARRAYS_ADD_START); BEGIN_NVC0(push, SUBC_3D(0x030c), 1); PUSH_DATA (push, 0); BEGIN_NVC0(push, SUBC_3D(0x0300), 1);