summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2012-02-15 01:18:43 +0100
committerMarek Olšák <maraeo@gmail.com>2012-03-10 21:42:06 +0100
commitd7d0d2890a408900a577c594599a1a79499e8447 (patch)
treedf782ef19e069e96a3e074ccf49463d3ad1f2c49
parent0e4508e077eab9d37879afbf4c857b58f1c49276 (diff)
mesa: display list dispatch for ARB_debug_output
-rw-r--r--src/mesa/main/dlist.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index 3db7bebae8..420ddcc0cc 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;
}