diff options
author | Brian Paul <[email protected]> | 2000-04-15 23:19:05 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-15 23:19:05 +0000 |
commit | 0c12733fb7a9bff685300346b55c19b4a304d1d0 (patch) | |
tree | 960bb42b179efcb1ed2237e32415880abb76163f /src/mesa/x86 | |
parent | 83aeeb0967a5ea4b6942fd255871537026d360c4 (diff) |
added a comment about FP overflows
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/x86.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/x86/x86.c b/src/mesa/x86/x86.c index ee6da37b2d3..3ec1de4fb26 100644 --- a/src/mesa/x86/x86.c +++ b/src/mesa/x86/x86.c @@ -1,4 +1,4 @@ -/* $Id: x86.c,v 1.4 2000/03/27 21:13:58 rjfrank Exp $ */ +/* $Id: x86.c,v 1.5 2000/04/15 23:19:05 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -112,6 +112,7 @@ void gl_init_x86_asm_transforms( void ) ASSIGN_XFORM_GROUP( x86, CULL_MASK_ACTIVE, 3, masked ) ASSIGN_XFORM_GROUP( x86, CULL_MASK_ACTIVE, 4, masked ) + /* XXX this function has been found to cause FP overflow exceptions */ gl_clip_tab[4] = gl_x86_cliptest_points4; #ifdef DEBUG |