glx/tests: Silence warnings after adding fields to glx_screen_vtable

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Ian Romanick 2013-02-22 17:13:10 -08:00
parent 6c28c037c4
commit 4944588cfd

View file

@ -24,12 +24,16 @@
struct glx_screen_vtable fake_glx_screen::vt = {
indirect_create_context,
indirect_create_context_attribs
indirect_create_context_attribs,
NULL,
NULL,
};
struct glx_screen_vtable fake_glx_screen_direct::vt = {
fake_glx_context_direct::create,
fake_glx_context_direct::create_attribs
fake_glx_context_direct::create_attribs,
NULL,
NULL,
};
const struct glx_context_vtable fake_glx_context::vt = {