summaryrefslogtreecommitdiff
path: root/sys/dev/rasops
diff options
context:
space:
mode:
authormacallan <macallan@NetBSD.org>2011-12-24 02:13:21 +0000
committermacallan <macallan@NetBSD.org>2011-12-24 02:13:21 +0000
commitf49405115cd65f926394a2be760b8a6000bc2b9c (patch)
tree72c32ea0cefc4a3335e653cb9a93a272cda8d989 /sys/dev/rasops
parent26178b93570230d31af10b30025d6457722dbf8d (diff)
rename alpha variable to avoid conflict with a platform macro on alpha
Diffstat (limited to 'sys/dev/rasops')
-rw-r--r--sys/dev/rasops/rasops32.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/rasops/rasops32.c b/sys/dev/rasops/rasops32.c
index e2a83eecd4c..39926f96fb5 100644
--- a/sys/dev/rasops/rasops32.c
+++ b/sys/dev/rasops/rasops32.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops32.c,v 1.20 2011/12/22 04:52:45 macallan Exp $ */
+/* $NetBSD: rasops32.c,v 1.21 2011/12/24 02:13:21 macallan Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.20 2011/12/22 04:52:45 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.21 2011/12/24 02:13:21 macallan Exp $");
#include "opt_rasops.h"
@@ -144,7 +144,7 @@ rasops32_putchar(void *cookie, int row, int col, u_int uc, long attr)
}
} else {
/* this is an alpha map */
- int x, y, r, g, b, alpha;
+ int x, y, r, g, b, aval;
int r1, g1, b1, r0, g0, b0;
r0 = (clr[0] >> 16) & 0xff;
@@ -157,10 +157,10 @@ rasops32_putchar(void *cookie, int row, int col, u_int uc, long attr)
for (y = 0; y < height; y++) {
dp = rp + ri->ri_width * y;
for (x = 0; x < width; x++) {
- alpha = *fr;
- r = alpha * r1 + (255 - alpha) * r0;
- g = alpha * g1 + (255 - alpha) * g0;
- b = alpha * b1 + (255 - alpha) * b0;
+ aval = *fr;
+ r = aval * r1 + (255 - aval) * r0;
+ g = aval * g1 + (255 - aval) * g0;
+ b = aval * b1 + (255 - aval) * b0;
*dp = (r & 0xff00) << 8 |
(g & 0xff00) |
(b & 0xff00) >> 8;