projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94f494e
)
fixed bug in DEST_4F template function
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 7 Aug 2001 22:16:06 +0000
(22:16 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 7 Aug 2001 22:16:06 +0000
(22:16 +0000)
src/mesa/math/m_trans_tmp.h
patch
|
blob
|
history
diff --git
a/src/mesa/math/m_trans_tmp.h
b/src/mesa/math/m_trans_tmp.h
index 212499b352dff48c09ea5cf879c1b6eea97eea97..f182f6ff495dc265f282e48bd0fa6401569c8f91 100644
(file)
--- a/
src/mesa/math/m_trans_tmp.h
+++ b/
src/mesa/math/m_trans_tmp.h
@@
-1,4
+1,4
@@
-/* $Id: m_trans_tmp.h,v 1.
5 2001/03/12 02:02:36 gareth
Exp $ */
+/* $Id: m_trans_tmp.h,v 1.
6 2001/08/07 22:16:06 brianp
Exp $ */
/*
* Mesa 3-D graphics library
@@
-53,7
+53,7
@@
static void DEST_4F( GLfloat (*t)[4],
if (SZ >= 1) t[i][0] = TRX_4F(f, 0);
if (SZ >= 2) t[i][1] = TRX_4F(f, 1);
if (SZ >= 3) t[i][2] = TRX_4F(f, 2);
- if (SZ == 4) t[i][3] = TRX_4F(f, 3);
+ if (SZ == 4) t[i][3] = TRX_4F(f, 3);
else t[i][3] = 1.0;
}
}
}