From: Brian Date: Thu, 8 Nov 2007 23:55:29 +0000 (-0700) Subject: remove unneeded #includes, added assertion in draw_compute_vertex_size() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=990fe4c0bf735206c3cc7346d84adc782595bc3a;p=mesa.git remove unneeded #includes, added assertion in draw_compute_vertex_size() --- diff --git a/src/mesa/pipe/draw/draw_vertex.c b/src/mesa/pipe/draw/draw_vertex.c index ce76cb043c9..dea26a3d0a1 100644 --- a/src/mesa/pipe/draw/draw_vertex.c +++ b/src/mesa/pipe/draw/draw_vertex.c @@ -34,11 +34,7 @@ */ -#include "pipe/p_defines.h" -#include "pipe/p_util.h" - #include "pipe/draw/draw_private.h" -#include "pipe/draw/draw_context.h" #include "pipe/draw/draw_vertex.h" @@ -86,6 +82,8 @@ draw_compute_vertex_size(struct vertex_info *vinfo) assert(0); } } + + assert(vinfo->size * 4 <= MAX_VERTEX_SIZE); }