diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-02-21 19:38:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-02-21 19:38:20 +0000 |
commit | 5c4971c6a7ae35f395b51587d0d5634df1878005 (patch) | |
tree | 25a11526103e9d54c42b31655dfa477a30231735 | |
parent | 2d15828444656460893973d00dffc8964eba6dba (diff) |
Remove left-over dependencies on the old rcons code.
-rw-r--r-- | sys/dev/ic/ramdac.h | 4 | ||||
-rw-r--r-- | sys/dev/pci/tga.c | 74 |
2 files changed, 28 insertions, 50 deletions
diff --git a/sys/dev/ic/ramdac.h b/sys/dev/ic/ramdac.h index be539c70230..6c7f586ca55 100644 --- a/sys/dev/ic/ramdac.h +++ b/sys/dev/ic/ramdac.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ramdac.h,v 1.5 2002/04/01 11:26:32 matthieu Exp $ */ +/* $OpenBSD: ramdac.h,v 1.6 2004/02/21 19:38:17 miod Exp $ */ /* $NetBSD: ramdac.h,v 1.1 2000/03/04 10:23:39 elric Exp $ */ /*- @@ -40,9 +40,7 @@ #ifndef _DEV_IC_RAMDAC_H #define _DEV_IC_RAMDAC_H -#include <dev/rcons/raster.h> #include <dev/wscons/wsconsio.h> -#include <dev/wscons/wscons_raster.h> struct ramdac_cookie; diff --git a/sys/dev/pci/tga.c b/sys/dev/pci/tga.c index d26bc6a57ba..2a15d319a7b 100644 --- a/sys/dev/pci/tga.c +++ b/sys/dev/pci/tga.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tga.c,v 1.22 2004/01/09 21:32:24 brad Exp $ */ +/* $OpenBSD: tga.c,v 1.23 2004/02/21 19:38:19 miod Exp $ */ /* $NetBSD: tga.c,v 1.40 2002/03/13 15:05:18 ad Exp $ */ /* @@ -93,9 +93,9 @@ void tga_free_screen(void *, void *); int tga_show_screen(void *, void *, int, void (*) (void *, int, int), void *); void tga_burner(void *, u_int, u_int); -int tga_rop(struct rasops_info *, int, int, int, int, int, +int tga_rop(struct rasops_info *, int, int, int, int, struct rasops_info *, int, int); -int tga_rop_vtov(struct rasops_info *, int, int, int, int, +int tga_rop_vtov(struct rasops_info *, int, int, int, int, struct rasops_info *, int, int ); void tga_putchar(void *c, int row, int col, u_int uc, long attr); void tga_eraserows(void *, int, int, long); @@ -1000,9 +1000,7 @@ tga_copycols(id, row, srccol, dstcol, ncols) dstx = ri->ri_font->fontwidth * dstcol; nx = ri->ri_font->fontwidth * ncols; - tga_rop(ri, dstx, y, - nx, ri->ri_font->fontheight, RAS_SRC, - ri, srcx, y); + tga_rop(ri, dstx, y, nx, ri->ri_font->fontheight, ri, srcx, y); } /* @@ -1020,53 +1018,38 @@ tga_copyrows(id, srcrow, dstrow, nrows) dsty = ri->ri_font->fontheight * dstrow; ny = ri->ri_font->fontheight * nrows; - tga_rop(ri, 0, dsty, - ri->ri_emuwidth, ny, RAS_SRC, - ri, 0, srcy); + tga_rop(ri, 0, dsty, ri->ri_emuwidth, ny, ri, 0, srcy); } -/* Do we need the src? */ -int needsrc[16] = { 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0 }; - -/* A mapping between our API and the TGA card */ -int map_rop[16] = { 0x0, 0x8, 0x4, 0xc, 0x2, 0xa, 0x6, - 0xe, 0x1, 0x9, 0x5, 0xd, 0x3, 0xb, 0x7, 0xf -}; - /* * Generic TGA raster op. * This covers all possible raster ops, and * clips the sizes and all of that. */ int -tga_rop(dst, dx, dy, w, h, rop, src, sx, sy) +tga_rop(dst, dx, dy, w, h, src, sx, sy) struct rasops_info *dst; - int dx, dy, w, h, rop; + int dx, dy, w, h; struct rasops_info *src; int sx, sy; { - if (!dst) + if (dst == NULL || src == NULL) return -1; - if (needsrc[RAS_GETOP(rop)]) { - if (src == NULL) - return -1; /* We want a src */ - /* Clip against src */ - if (sx < 0) { - w += sx; - sx = 0; - } - if (sy < 0) { - h += sy; - sy = 0; - } - if (sx + w > src->ri_emuwidth) - w = src->ri_emuwidth - sx; - if (sy + h > src->ri_emuheight) - h = src->ri_emuheight - sy; - } else { - if (src != NULL) - return -1; /* We need no src */ + + /* Clip against src */ + if (sx < 0) { + w += sx; + sx = 0; } + if (sy < 0) { + h += sy; + sy = 0; + } + if (sx + w > src->ri_emuwidth) + w = src->ri_emuwidth - sx; + if (sy + h > src->ri_emuheight) + h = src->ri_emuheight - sy; + /* Clip against dst. We modify src regardless of using it, * since it really doesn't matter. */ @@ -1086,11 +1069,8 @@ tga_rop(dst, dx, dy, w, h, rop, src, sx, sy) h = dst->ri_emuheight - dy; if (w <= 0 || h <= 0) return 0; /* Vacuously true; */ - if (!src) { - /* XXX Punt! */ - return -1; - } - return tga_rop_vtov(dst, dx, dy, w, h, rop, src, sx, sy); + + return tga_rop_vtov(dst, dx, dy, w, h, src, sx, sy); } @@ -1101,9 +1081,9 @@ tga_rop(dst, dx, dy, w, h, rop, src, sx, sy) * that are on the card. */ int -tga_rop_vtov(dst, dx, dy, w, h, rop, src, sx, sy) +tga_rop_vtov(dst, dx, dy, w, h, src, sx, sy) struct rasops_info *dst; - int dx, dy, w, h, rop; + int dx, dy, w, h; struct rasops_info *src; int sx, sy; { @@ -1161,7 +1141,7 @@ tga_rop_vtov(dst, dx, dy, w, h, rop, src, sx, sy) (dx + dst->ri_xorigin) * (dst->ri_depth/8); TGAWALREG(dc, TGA_REG_GMOR, 3, 0x0007); /* Copy mode */ - TGAWALREG(dc, TGA_REG_GOPR, 3, map_rop[rop]); /* Set up the op */ + TGAWALREG(dc, TGA_REG_GOPR, 3, 0x0003); /* SRC */ /* * we have 3 sizes of pixels to move in X direction: |