From: Keith Whitwell Date: Fri, 23 Nov 2007 14:44:54 +0000 (+0000) Subject: gallium: initialized draw element buffer to NULL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbecce52f8f9db729810ed70ba1c4112d45cc583;p=mesa.git gallium: initialized draw element buffer to NULL --- diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c index c7ad4c3d68c..d438c0be103 100644 --- a/src/mesa/pipe/draw/draw_context.c +++ b/src/mesa/pipe/draw/draw_context.c @@ -85,6 +85,7 @@ struct draw_context *draw_create( void ) draw->prim = ~0; /* != any of PIPE_PRIM_x */ draw_vertex_cache_invalidate( draw ); + draw_set_mapped_element_buffer( draw, 0, NULL ); return draw; }