diff options
author | Brian Paul <[email protected]> | 2015-03-18 12:25:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-18 12:46:11 -0600 |
commit | 627991dbf74ce5aee9ce75155fc27a429bdd0548 (patch) | |
tree | b76eec6f64919e18e6b7ec486acaf06c408101bb /src/mesa | |
parent | 9263986401c90a309d167121bc98c47b24c39d3d (diff) |
dri: add _glapi_set_nop_handler(), _glapi_new_nop_table() to dri_test.c
I wasn't aware of these _glapi_ stub functions when I committed
4bdbb588a9d385509f9168e38bfdb76952ba469c. Fixes "make check"
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89662
Reviewed-by: Mark Janes <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/common/dri_test.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/dri_test.c b/src/mesa/drivers/dri/common/dri_test.c index 7ab50d9231e..57bfa5b9394 100644 --- a/src/mesa/drivers/dri/common/dri_test.c +++ b/src/mesa/drivers/dri/common/dri_test.c @@ -76,6 +76,17 @@ _glapi_get_dispatch_table_size(void) return 0; } +PUBLIC void +_glapi_set_nop_handler(_glapi_nop_handler_proc func) +{ +} + +PUBLIC struct _glapi_table * +_glapi_new_nop_table(unsigned num_entries) +{ + return NULL; +} + #ifndef NO_MAIN int main(int argc, char** argv) { |