diff options
author | Brian Paul <[email protected]> | 2000-01-07 07:42:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-01-07 07:42:33 +0000 |
commit | 3c3533c5c8070fcca25247945cebedea60616082 (patch) | |
tree | 00b9cb2f1bc4e8788b1421b1840d6376a88ed112 /src/mesa/main/dispatch.c | |
parent | 77aa8b9c865eb1e676a0af0cd6c28f3f7967093f (diff) |
added missing glHintPGI() function
Diffstat (limited to 'src/mesa/main/dispatch.c')
-rw-r--r-- | src/mesa/main/dispatch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/dispatch.c b/src/mesa/main/dispatch.c index 66040961350..b1b9ce429a5 100644 --- a/src/mesa/main/dispatch.c +++ b/src/mesa/main/dispatch.c @@ -1,4 +1,4 @@ -/* $Id: dispatch.c,v 1.7 2000/01/07 07:16:34 brianp Exp $ */ +/* $Id: dispatch.c,v 1.8 2000/01/07 07:42:33 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -509,6 +509,9 @@ _mesa_init_exec_table(struct _glapi_table *exec) exec->PointParameterfEXT = _mesa_PointParameterfEXT; exec->PointParameterfvEXT = _mesa_PointParameterfvEXT; + /* 77. GL_PGI_misc_hints */ + exec->HintPGI = _mesa_HintPGI; + /* GL_EXT_polygon_offset */ exec->PolygonOffsetEXT = _mesa_PolygonOffsetEXT; |