diff options
author | Marek Olšák <[email protected]> | 2012-02-15 01:18:43 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-03-10 21:42:06 +0100 |
commit | d7d0d2890a408900a577c594599a1a79499e8447 (patch) | |
tree | df782ef19e069e96a3e074ccf49463d3ad1f2c49 /src | |
parent | 0e4508e077eab9d37879afbf4c857b58f1c49276 (diff) |
mesa: display list dispatch for ARB_debug_output
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/dlist.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 3db7bebae81..420ddcc0cce 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -10425,6 +10425,9 @@ _mesa_create_save_table(void) SET_TextureStorage2DEXT(table, _mesa_TextureStorage2DEXT); SET_TextureStorage3DEXT(table, _mesa_TextureStorage3DEXT); + /* GL_ARB_debug_output (no dlist support) */ + _mesa_init_errors_dispatch(table); + return table; } |