diff options
author | Brian Paul <[email protected]> | 2003-02-21 21:00:20 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-02-21 21:00:20 +0000 |
commit | 3a4231e132bf56d15679c9608b6d5a100d06d9dd (patch) | |
tree | d2a7ad447cec6461dc5bc85605e73be57d1db4a7 /src/mesa/swrast/s_aalinetemp.h | |
parent | ea20dfa7a8788870959f136bff0c3a20e4c2bb31 (diff) |
use IROUND to convert depth values from float to int (bug 690728)
Diffstat (limited to 'src/mesa/swrast/s_aalinetemp.h')
-rw-r--r-- | src/mesa/swrast/s_aalinetemp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_aalinetemp.h b/src/mesa/swrast/s_aalinetemp.h index 4fffd0423ed..529da481103 100644 --- a/src/mesa/swrast/s_aalinetemp.h +++ b/src/mesa/swrast/s_aalinetemp.h @@ -1,10 +1,10 @@ -/* $Id: s_aalinetemp.h,v 1.21 2002/08/07 00:45:07 brianp Exp $ */ +/* $Id: s_aalinetemp.h,v 1.22 2003/02/21 21:00:27 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 4.1 + * Version: 5.1 * - * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2003 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"), @@ -54,7 +54,7 @@ NAME(plot)(GLcontext *ctx, struct LineInfo *line, int ix, int iy) * solving the plane equations at (ix,iy). */ #ifdef DO_Z - line->span.array->z[i] = (GLdepth) solve_plane(fx, fy, line->zPlane); + line->span.array->z[i] = (GLdepth) IROUND(solve_plane(fx, fy, line->zPlane)); #endif #ifdef DO_FOG line->span.array->fog[i] = solve_plane(fx, fy, line->fPlane); |