Browse Source

progs/tests: Silence uninitialized variable warning.

tags/mesa-7.7-1
Vinson Lee 15 years ago
parent
commit
c9c6e9a39e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      progs/tests/getprocaddress.c

+ 1
- 1
progs/tests/getprocaddress.c View File

@@ -1188,7 +1188,7 @@ exercise_buffer_objects(enum Map_Buffer_Usage usage)
GLuint bufferID;
GLint bufferMapped;
static GLubyte data[BUFFER_DATA_SIZE] = {0};
float *dataPtr;
float *dataPtr = NULL;

/* Get the function pointers we need. These are from
* GL_ARB_vertex_buffer_object and are required in all

Loading…
Cancel
Save