mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
r300: Silence uninitialized variable warning.
This commit is contained in:
parent
4f131356cc
commit
3a299071d4
1 changed files with 1 additions and 1 deletions
|
|
@ -332,7 +332,7 @@ static void r300TranslateAttrib(GLcontext *ctx, GLuint attr, int count, const st
|
|||
{
|
||||
r300ContextPtr r300 = R300_CONTEXT(ctx);
|
||||
struct r300_vertex_buffer *vbuf = &r300->vbuf;
|
||||
struct vertex_attribute r300_attr;
|
||||
struct vertex_attribute r300_attr = { 0 };
|
||||
GLenum type;
|
||||
GLuint stride;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue