diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-11-18 23:52:37 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-11-18 23:52:37 +0000 |
commit | 5b7dab2e4c7df1fde0a7fcf28b8b54745b9fcd2e (patch) | |
tree | 05ce265fc4b97cfb18e32b20eefd6c05cfbad42a /src/mesa/main/state.c | |
parent | 17fe22d3bfcce0471ab9ae638cc6b0c91f7d8e65 (diff) |
added test implementation of GL_ARB_window_pos
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 0c884e1959..66d862286e 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,8 +1,8 @@ -/* $Id: state.c,v 1.70 2001/11/18 22:48:13 brianp Exp $ */ +/* $Id: state.c,v 1.71 2001/11/18 23:52:38 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.1 * * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * @@ -478,6 +478,23 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize) exec->CompressedTexSubImage1D = _mesa_CompressedTexSubImage1DARB; exec->GetCompressedTexImage = _mesa_GetCompressedTexImageARB; + /* GL_ARB_window_pos */ + exec->WindowPos2dARB = _mesa_WindowPos2dARB; + exec->WindowPos2dvARB = _mesa_WindowPos2dvARB; + exec->WindowPos2fARB = _mesa_WindowPos2fARB; + exec->WindowPos2fvARB = _mesa_WindowPos2fvARB; + exec->WindowPos2iARB = _mesa_WindowPos2iARB; + exec->WindowPos2ivARB = _mesa_WindowPos2ivARB; + exec->WindowPos2sARB = _mesa_WindowPos2sARB; + exec->WindowPos2svARB = _mesa_WindowPos2svARB; + exec->WindowPos3dARB = _mesa_WindowPos3dARB; + exec->WindowPos3dvARB = _mesa_WindowPos3dvARB; + exec->WindowPos3fARB = _mesa_WindowPos3fARB; + exec->WindowPos3fvARB = _mesa_WindowPos3fvARB; + exec->WindowPos3iARB = _mesa_WindowPos3iARB; + exec->WindowPos3ivARB = _mesa_WindowPos3ivARB; + exec->WindowPos3sARB = _mesa_WindowPos3sARB; + exec->WindowPos3svARB = _mesa_WindowPos3svARB; } |