summaryrefslogtreecommitdiff
path: root/src/mesa/main/dlist.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@freedesktop.org>2004-10-24 02:05:40 +0000
committerAdam Jackson <ajax@freedesktop.org>2004-10-24 02:05:40 +0000
commit94987beb2c9e87d9c55db5cb7c089dc77f78df94 (patch)
tree714d8c344090c992e6a55658bc14ef4d585761ac /src/mesa/main/dlist.c
parent07553c58fd068a0e1b43e564fba1baffa6ea222d (diff)
Bug #1682: Mesa core code that gets linked into DRI drivers should never call
through the GL API directly, but should instead use the GL_CALL macro.
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r--src/mesa/main/dlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index ef2dada710..9f4b9119a7 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -7694,7 +7694,7 @@ static void GLAPIENTRY print_list( GLcontext *ctx, GLuint list )
Node *n;
GLboolean done;
- if (!glIsList(list)) {
+ if (!GL_CALL(IsList)(list)) {
_mesa_printf("%u is not a display list ID\n", list);
return;
}