diff options
author | Brian Paul <[email protected]> | 2005-09-21 02:47:32 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-21 02:47:32 +0000 |
commit | 3e37bafab0a339021354b9c78f983d05d433d735 (patch) | |
tree | 624d1c39e30f8a74bf0860f9389cd772f9dfe0f5 /src/mesa/swrast/s_zoom.c | |
parent | 4092fbd55ac92a59d09d5167ced328683bed049c (diff) |
replace GLdepth with GLuint and remove GLdepth
Diffstat (limited to 'src/mesa/swrast/s_zoom.c')
-rw-r--r-- | src/mesa/swrast/s_zoom.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_zoom.c b/src/mesa/swrast/s_zoom.c index b67a2970109..580e25e9456 100644 --- a/src/mesa/swrast/s_zoom.c +++ b/src/mesa/swrast/s_zoom.c @@ -1,9 +1,8 @@ - /* * Mesa 3-D graphics library - * Version: 5.1 + * Version: 6.5 * - * Copyright (C) 1999-2003 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"), @@ -232,7 +231,7 @@ zoom_span( GLcontext *ctx, const struct sw_span *span, } } else { - const GLdepth *zValues = (const GLuint *) src; + const GLuint *zValues = (const GLuint *) src; assert(format == GL_DEPTH_COMPONENT); if (ctx->Pixel.ZoomX == -1.0F) { /* common case */ |