diff options
author | Brian Paul <[email protected]> | 2002-04-02 16:15:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-04-02 16:15:16 +0000 |
commit | 1537b63fce36f87b3606d0e7cdca2d10bbdffd56 (patch) | |
tree | d1aa68c5385e22a2770de0a973a8d40d2e04d936 /src/mesa/main/dlist.c | |
parent | 86a7cc6f2c6ec49b5f09f03a872a49bce5afbe85 (diff) |
GL_ARB_point_parameters support
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 56cf706fad6..e2224a1046b 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.84 2001/12/19 02:36:05 brianp Exp $ */ +/* $Id: dlist.c,v 1.85 2002/04/02 16:15:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -6216,7 +6216,10 @@ _mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize ) table->CompressedTexSubImage1DARB = save_CompressedTexSubImage1DARB; table->GetCompressedTexImageARB = exec_GetCompressedTexImageARB; - /* ARB ??. GL_ARB_window_pos */ + /* ARB 14. GL_ARB_point_parameters */ + /* re-use EXT_point_parameters functions */ + + /* ARB 25. GL_ARB_window_pos */ table->WindowPos2dARB = save_WindowPos2dARB; table->WindowPos2dvARB = save_WindowPos2dvARB; table->WindowPos2fARB = save_WindowPos2fARB; |