diff options
author | Brian Paul <[email protected]> | 2005-01-26 14:02:50 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-01-26 14:02:50 +0000 |
commit | 8f029f175e839e10f1fa5cadd35ea015eae59d7f (patch) | |
tree | bc5c9c5cca4c17468bef531cc14cb6792259b84b /src/mesa/main/depth.c | |
parent | 7c58a00a5052f2cba6316ee4d33ad49b11c2e050 (diff) |
just comments/clean-up
Diffstat (limited to 'src/mesa/main/depth.c')
-rw-r--r-- | src/mesa/main/depth.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/mesa/main/depth.c b/src/mesa/main/depth.c index d92423dcee1..6c60222096a 100644 --- a/src/mesa/main/depth.c +++ b/src/mesa/main/depth.c @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.1 + * Version: 6.3 * - * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -119,7 +119,9 @@ _mesa_DepthMask( GLboolean flag ) -/* GL_EXT_depth_bounds_test */ +/** + * Specified by the GL_EXT_depth_bounds_test extension. + */ void GLAPIENTRY _mesa_DepthBoundsEXT( GLclampd zmin, GLclampd zmax ) { @@ -147,6 +149,10 @@ _mesa_DepthBoundsEXT( GLclampd zmin, GLclampd zmax ) /***** Initialization *****/ /**********************************************************************/ + +/** + * Initialize the depth buffer attribute group in the given context. + */ void _mesa_init_depth( GLcontext * ctx ) { /* Depth buffer group */ |