nv50,nvc0: don't assert on cso with 0 vertex elements
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sun, 13 Mar 2011 17:18:17 +0000 (18:18 +0100)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sun, 13 Mar 2011 17:19:22 +0000 (18:19 +0100)
src/gallium/drivers/nv50/nv50_stateobj.h
src/gallium/drivers/nv50/nv50_vbo.c
src/gallium/drivers/nvc0/nvc0_vbo.c

index cf5b92ef1a83665a2de98d0dff54a722a7fa63db..515e3e78d42c9ef0c55c04646abb7aea10bfea3f 100644 (file)
@@ -49,7 +49,7 @@ struct nv50_vertex_stateobj {
    boolean need_conversion;
    unsigned vertex_size;
    unsigned packet_vertex_limit;
-   struct nv50_vertex_element element[1];
+   struct nv50_vertex_element element[0];
 };
 
 #endif
index 4f0a5018459e982db85ca6e6ee63b8abd79326a1..abdb9ce2f936a01d43b07067c5283a4ac74c5980 100644 (file)
@@ -51,10 +51,8 @@ nv50_vertex_state_create(struct pipe_context *pipe,
     struct translate_key transkey;
     unsigned i;
 
-    assert(num_elements);
-
     so = MALLOC(sizeof(*so) +
-                (num_elements - 1) * sizeof(struct nv50_vertex_element));
+                num_elements * sizeof(struct nv50_vertex_element));
     if (!so)
         return NULL;
     so->num_elements = num_elements;
index 3698043029cccdfa8a664aae7a4ed9188a9d5ae1..6bbcf2447eca1271b45a28407fb565e2b726a751 100644 (file)
@@ -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)