mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 09:58:05 +02:00
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:
parent
6c28c037c4
commit
4944588cfd
1 changed files with 6 additions and 2 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue