diff options
author | marha <marha@users.sourceforge.net> | 2010-07-28 18:15:53 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-07-28 18:15:53 +0000 |
commit | 022d9c6cf6a67385d84ff33ce095f5c7f9f6d0cc (patch) | |
tree | 1c6bef40b9b16775f2d9b39f88d6224e0bea69ff /mesalib/src/mesa/glapi | |
parent | 51e3b8e993cc874f4ac4ba4162c7aea00fe1a8eb (diff) | |
download | vcxsrv-022d9c6cf6a67385d84ff33ce095f5c7f9f6d0cc.tar.gz vcxsrv-022d9c6cf6a67385d84ff33ce095f5c7f9f6d0cc.tar.bz2 vcxsrv-022d9c6cf6a67385d84ff33ce095f5c7f9f6d0cc.zip |
Update to mesa 7,8,2
Diffstat (limited to 'mesalib/src/mesa/glapi')
-rw-r--r-- | mesalib/src/mesa/glapi/glapi_nop.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mesalib/src/mesa/glapi/glapi_nop.c b/mesalib/src/mesa/glapi/glapi_nop.c index df9c58728..4257b1fbc 100644 --- a/mesalib/src/mesa/glapi/glapi_nop.c +++ b/mesalib/src/mesa/glapi/glapi_nop.c @@ -48,6 +48,26 @@ #include "glapi/glapi.h" + +/* + * These stubs are kept so that the old DRI drivers still load. + */ +PUBLIC void +_glapi_noop_enable_warnings(GLboolean enable); + +PUBLIC void +_glapi_set_warning_func(_glapi_proc func); + +void +_glapi_noop_enable_warnings(GLboolean enable) +{ +} + +void +_glapi_set_warning_func(_glapi_proc func) +{ +} + #ifdef DEBUG /** |