Mesa (master): st/mesa: use PIPE_MAX_ATTRIBS as the max number of vertex buffers

Marek Olšák mareko at kemper.freedesktop.org
Mon May 8 16:37:08 UTC 2017


Module: Mesa
Branch: master
Commit: d801247cec8f55304fbf8d6c222272941ec23fdb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d801247cec8f55304fbf8d6c222272941ec23fdb

Author: Marek Olšák <marek.olsak at amd.com>
Date:   Sun Apr 30 14:28:34 2017 +0200

st/mesa: use PIPE_MAX_ATTRIBS as the max number of vertex buffers

Tested-by: Edmondo Tommasina <edmondo.tommasina at gmail.com>
Reviewed-by: Brian Paul <brianp at vmware.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle at amd.com>

---

 src/mesa/state_tracker/st_atom_array.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/state_tracker/st_atom_array.c b/src/mesa/state_tracker/st_atom_array.c
index fb5c149898..d3c4ff3203 100644
--- a/src/mesa/state_tracker/st_atom_array.c
+++ b/src/mesa/state_tracker/st_atom_array.c
@@ -632,7 +632,7 @@ void st_update_array(struct st_context *st)
    const struct gl_vertex_array **arrays = ctx->Array._DrawArrays;
    const struct st_vertex_program *vp;
    const struct st_vp_variant *vpv;
-   struct pipe_vertex_buffer vbuffer[PIPE_MAX_SHADER_INPUTS];
+   struct pipe_vertex_buffer vbuffer[PIPE_MAX_ATTRIBS];
    struct pipe_vertex_element velements[PIPE_MAX_ATTRIBS];
    unsigned num_vbuffers;
 




More information about the mesa-commit mailing list