projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12e875c
)
forgotten diffuse alpha fix
author
Keith Whitwell
<keith@tungstengraphics.com>
Sat, 20 Oct 2001 00:13:45 +0000
(
00:13
+0000)
committer
Keith Whitwell
<keith@tungstengraphics.com>
Sat, 20 Oct 2001 00:13:45 +0000
(
00:13
+0000)
src/mesa/tnl/t_vb_lighttmp.h
patch
|
blob
|
history
diff --git
a/src/mesa/tnl/t_vb_lighttmp.h
b/src/mesa/tnl/t_vb_lighttmp.h
index cb833e245d42715818b4db92dc5b1512efb359b5..25e29ce606f8f57e5eb5b3429bae292d1bc773b3 100644
(file)
--- a/
src/mesa/tnl/t_vb_lighttmp.h
+++ b/
src/mesa/tnl/t_vb_lighttmp.h
@@
-1,4
+1,4
@@
-/* $Id: t_vb_lighttmp.h,v 1.1
8 2001/09/14 21:30:31 brianp
Exp $ */
+/* $Id: t_vb_lighttmp.h,v 1.1
9 2001/10/20 00:13:45 keithw
Exp $ */
/*
* Mesa 3-D graphics library
@@
-609,6
+609,7
@@
static void TAG(light_fast_rgba_single)( GLcontext *ctx,
ACC_SCALE_SCALAR_3V(sum, spec, light->_MatSpecular[1]);
}
UNCLAMPED_FLOAT_TO_RGB_CHAN(Bcolor[j], sum );
+ Bcolor[j][3] = basechan[1][3];
}
COPY_CHAN4(Fcolor[j], basechan[0]);
} else {
@@
-623,6
+624,7
@@
static void TAG(light_fast_rgba_single)( GLcontext *ctx,
}
UNCLAMPED_FLOAT_TO_RGB_CHAN(Fcolor[j], sum );
+ Fcolor[j][3] = basechan[0][3];
if (IDX & LIGHT_TWOSIDE) COPY_CHAN4(Bcolor[j], basechan[1]);
}