summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvc0
diff options
context:
space:
mode:
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>2011-03-13 18:18:17 +0100
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>2011-03-13 18:19:22 +0100
commitc448a556e9f97dd059de99048b75ebf6d51e1d7c (patch)
treeac9642e2bbe6a47871b377dc3a3f2acb6ef5bb68 /src/gallium/drivers/nvc0
parent07838ff990a74e3acd95de7042042b49ecc51570 (diff)
nv50,nvc0: don't assert on cso with 0 vertex elements
Diffstat (limited to 'src/gallium/drivers/nvc0')
-rw-r--r--src/gallium/drivers/nvc0/nvc0_vbo.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_vbo.c b/src/gallium/drivers/nvc0/nvc0_vbo.c
index 3698043029..6bbcf2447e 100644
--- a/src/gallium/drivers/nvc0/nvc0_vbo.c
+++ b/src/gallium/drivers/nvc0/nvc0_vbo.c
@@ -51,8 +51,6 @@ nvc0_vertex_state_create(struct pipe_context *pipe,
struct translate_key transkey;
unsigned i;
- assert(num_elements);
-
so = MALLOC(sizeof(*so) +
num_elements * sizeof(struct nvc0_vertex_element));
if (!so)