diff options
author | Ilia Mirkin <[email protected]> | 2013-11-25 03:18:34 -0500 |
---|---|---|
committer | Maarten Lankhorst <[email protected]> | 2014-01-27 16:40:42 +0100 |
commit | 20929963d389c237f50192a75157cbc98c57c8d3 (patch) | |
tree | 5039cad8d4f616ebe49b6db480f294832056becf | |
parent | 02b317a0d601ab50cedad31f2b52da3bdc3a5aad (diff) |
nv50: allow vert_count to be >255
Signed-off-by: Ilia Mirkin <[email protected]>
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_program.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_program.h b/src/gallium/drivers/nouveau/nv50/nv50_program.h index 13b9516a3e4..95167272f44 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_program.h +++ b/src/gallium/drivers/nouveau/nv50/nv50_program.h @@ -87,8 +87,8 @@ struct nv50_program { } fp; struct { + uint32_t vert_count; ubyte primid; /* primitive id output register */ - uint8_t vert_count; uint8_t prim_type; /* point, line strip or tri strip */ } gp; |