⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fblin32.c

📁 一个linux下的根文件系统的源码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 1999, 2000, 2001 Greg Haerr <greg@censoft.com> * Portions Copyright (c) 2002 by Koninklijke Philips Electronics N.V. * * 32bpp Linear Video Driver for Microwindows * * Inspired from Ben Pfaff's BOGL <pfaffben@debian.org> *//*#define NDEBUG*/#include <assert.h>#include <string.h>#include "device.h"#include "fb.h"/* Calc linelen and mmap size, return 0 on fail*/static intlinear32_init(PSD psd){	if (!psd->size) {		psd->size = psd->yres * psd->linelen;		/* convert linelen from byte to pixel len for bpp 16, 24, 32*/		psd->linelen /= 4;	}	return 1;}/* Set pixel at x, y, to pixelval c*/static voidlinear32_drawpixel(PSD psd, MWCOORD x, MWCOORD y, MWPIXELVAL c){	ADDR32	addr = psd->addr;	assert (addr != 0);	assert (x >= 0 && x < psd->xres);	assert (y >= 0 && y < psd->yres);	assert (c < psd->ncolors);	DRAWON;	if (gr_mode == MWMODE_COPY)		addr[x + y * psd->linelen] = c;	else		applyOp(gr_mode, c, &addr[x + y * psd->linelen], ADDR32);	DRAWOFF;}/* Read pixel at x, y*/static MWPIXELVALlinear32_readpixel(PSD psd, MWCOORD x, MWCOORD y){	ADDR32	addr = psd->addr;	assert (addr != 0);	assert (x >= 0 && x < psd->xres);	assert (y >= 0 && y < psd->yres);	return addr[x + y * psd->linelen];}/* Draw horizontal line from x1,y to x2,y including final point*/static voidlinear32_drawhorzline(PSD psd, MWCOORD x1, MWCOORD x2, MWCOORD y, MWPIXELVAL c){	ADDR32	addr = psd->addr;	assert (addr != 0);	assert (x1 >= 0 && x1 < psd->xres);	assert (x2 >= 0 && x2 < psd->xres);	assert (x2 >= x1);	assert (y >= 0 && y < psd->yres);	assert (c < psd->ncolors);	DRAWON;	addr += x1 + y * psd->linelen;	if(gr_mode == MWMODE_COPY) {		/* FIXME: memsetl(dst, c, x2-x1+1)*/		while(x1++ <= x2)			*addr++ = c;	} else {		while(x1++ <= x2) {			applyOp(gr_mode, c, addr, ADDR32);			++addr;		}	}	DRAWOFF;}/* Draw a vertical line from x,y1 to x,y2 including final point*/static voidlinear32_drawvertline(PSD psd, MWCOORD x, MWCOORD y1, MWCOORD y2, MWPIXELVAL c){	ADDR32	addr = psd->addr;	int	linelen = psd->linelen;	assert (addr != 0);	assert (x >= 0 && x < psd->xres);	assert (y1 >= 0 && y1 < psd->yres);	assert (y2 >= 0 && y2 < psd->yres);	assert (y2 >= y1);	assert (c < psd->ncolors);	DRAWON;	addr += x + y1 * linelen;	if(gr_mode == MWMODE_COPY) {		while(y1++ <= y2) {			*addr = c;			addr += linelen;		}	} else {		while(y1++ <= y2) {			applyOp(gr_mode, c, addr, ADDR32);			addr += linelen;		}	}	DRAWOFF;}/* srccopy bitblt*/static voidlinear32_blit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD w, MWCOORD h,	PSD srcpsd, MWCOORD srcx, MWCOORD srcy, long op){	ADDR8	dst8, src8;	ADDR32	dst = dstpsd->addr;	ADDR32	src = srcpsd->addr;	int	i;	int	dlinelen = dstpsd->linelen;	int	slinelen = srcpsd->linelen;	int	dlinelen_minus_w4;	int	slinelen_minus_w4;#if ALPHABLEND	unsigned int alpha;#endif	assert (dst != 0);	assert (dstx >= 0 && dstx < dstpsd->xres);	assert (dsty >= 0 && dsty < dstpsd->yres);	assert (w > 0);	assert (h > 0);	assert (src != 0);	assert (srcx >= 0 && srcx < srcpsd->xres);	assert (srcy >= 0 && srcy < srcpsd->yres);	assert (dstx+w <= dstpsd->xres);	assert (dsty+h <= dstpsd->yres);	assert (srcx+w <= srcpsd->xres);	assert (srcy+h <= srcpsd->yres);	DRAWON;	dst += dstx + dsty * dlinelen;	src += srcx + srcy * slinelen;#if ALPHABLEND	if((op & MWROP_EXTENSION) != MWROP_BLENDCONSTANT)		goto stdblit;	alpha = op & 0xff;	src8 = (ADDR8)src;	dst8 = (ADDR8)dst;	dlinelen_minus_w4 = (dlinelen - w) * 4;	slinelen_minus_w4 = (slinelen - w) * 4;	while(--h >= 0) {		for(i=0; i<w; ++i) {			/* FIXME: This doesn't look endian-neutral.			 * I don't think this'll work on PowerPC,			 * but I don't have one to test it.			 */			register unsigned long s = *src8++;			register unsigned long d = *dst8;			*dst8++ = (unsigned char)(((s - d)*alpha)>>8) + d;			s = *src8++;			d = *dst8;			*dst8++ = (unsigned char)(((s - d)*alpha)>>8) + d;			s = *src8;			d = *dst8;			*dst8 = (unsigned char)(((s - d)*alpha)>>8) + d;			dst8 += 2;			src8 += 2;		}		dst8 += dlinelen_minus_w4;		src8 += slinelen_minus_w4;	}	DRAWOFF;	return;stdblit:#endif	if (op == MWROP_COPY) {		/* copy from bottom up if dst in src rectangle*/		/* memmove is used to handle x case*/		if (srcy < dsty) {			src += (h-1) * slinelen;			dst += (h-1) * dlinelen;			slinelen *= -1;			dlinelen *= -1;		}		while(--h >= 0) {			/* a _fast_ memmove is a _must_ in this routine*/			memmove(dst, src, w<<2);			dst += dlinelen;			src += slinelen;		}	} else {		for(i=0; i < w; ++i) {			applyOp(MWROP_TO_MODE(op), *src, dst, ADDR32);			++src;			++dst;		}		dst += dlinelen - w;		src += slinelen - w;	}	DRAWOFF;}/* srccopy stretchblt*/static voidlinear32_stretchblit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD dstw,	MWCOORD dsth, PSD srcpsd, MWCOORD srcx, MWCOORD srcy, MWCOORD srcw,	MWCOORD srch, long op){	ADDR32	dst;	ADDR32	src;	int	dlinelen = dstpsd->linelen;	int	slinelen = srcpsd->linelen;	int	i, ymax;	int	row_pos, row_inc;	int	col_pos, col_inc;	unsigned long pixel = 0;	assert (dstpsd->addr != 0);	assert (dstx >= 0 && dstx < dstpsd->xres);	assert (dsty >= 0 && dsty < dstpsd->yres);	assert (dstw > 0);	assert (dsth > 0);	assert (srcpsd->addr != 0);	assert (srcx >= 0 && srcx < srcpsd->xres);	assert (srcy >= 0 && srcy < srcpsd->yres);	assert (srcw > 0);	assert (srch > 0);	assert (dstx+dstw <= dstpsd->xres);	assert (dsty+dsth <= dstpsd->yres);	assert (srcx+srcw <= srcpsd->xres);	assert (srcy+srch <= srcpsd->yres);	DRAWON;	row_pos = 0x10000;	row_inc = (srch << 16) / dsth;	/* stretch blit using integer ratio between src/dst height/width*/	for (ymax = dsty+dsth; dsty<ymax; ++dsty) {		/* find source y position*/		while (row_pos >= 0x10000L) {			++srcy;			row_pos -= 0x10000L;		}		dst = (ADDR32)dstpsd->addr + dstx + dsty*dlinelen;		src = (ADDR32)srcpsd->addr + srcx + (srcy-1)*slinelen;		/* copy a row of pixels*/		col_pos = 0x10000;		col_inc = (srcw << 16) / dstw;		for (i=0; i<dstw; ++i) {			/* get source x pixel*/			while (col_pos >= 0x10000L) {				pixel = *src++;				col_pos -= 0x10000L;			}			*dst++ = pixel;			col_pos += col_inc;		}		row_pos += row_inc;	}	DRAWOFF;}/* * This stretchblit code was originally written for the TriMedia * VLIW CPU.  Therefore it uses RESTRICT pointers, and the special * one-assembler-opcode pseudo-functions SIGN and ABS. * * (The 'restrict' extension is in C99, so for a C99 compiler you * could "#define RESTRICT restrict" or put * "CFLAGS += -DRESTRICT=restrict" in the makefile). * * Compatibility definitions: */#ifndef RESTRICT#define RESTRICT#endif#ifndef SIGN#define SIGN(x) (((x) > 0) ? 1 : (((x) == 0) ? 0 : -1))#endif#ifndef ABS#define ABS(x) (((x) >= 0) ? (x) : -(x))#endif/* Blit a 32-bit image. * Can stretch the image by any X and/or Y scale factor. * Can flip the image in the X and/or Y axis. * * This is the faster version with no per-pixel multiply and a single * decision tree for the inner loop, by Jon.  Based on Alex's original * all-integer version. * * Paramaters: * srf              - Dest surface * dest_x_start * dest_y_start    - Top left corner of dest rectangle * width, height   - Size in dest co-ordinates. * x_denominator   - Denominator for source X value fractions.  Note that *                   this must be even, and all the numerators must also be *                   even, so we can easily divide by 2. * y_denominator   - Denominator for source Y value fractions.  Note that *                   this must be even, and all the numerators must also be *                   even, so we can easily divide by 2. * src_x_fraction  - * src_y_fraction  - Point in source that corresponds to the top left corner *                   of the pixel (dest_x_start, dest_y_start).  This is a *                   fraction - to get a float, divide by y_denominator. * x_step_fraction - X step in src for an "x++" step in dest.  May be negative *                   (for a flip).  Expressed as a fraction - divide it by *                   x_denominator for a float. * y_step_fraction - Y step in src for a  "y++" step in dest.  May be negative *                   (for a flip).  Expressed as a fraction - divide it by *                   y_denominator for a float. * image           - Source image. * op              - Raster operation, currently ignored. */static voidlinear32_stretchblitex(PSD dstpsd,			 PSD srcpsd,			 MWCOORD dest_x_start,			 MWCOORD dest_y_start,			 MWCOORD width,			 MWCOORD height,			 int x_denominator,			 int y_denominator,			 int src_x_fraction,			 int src_y_fraction,			 int x_step_fraction,			 int y_step_fraction,			 long op){	/* Pointer to the current pixel in the source image */	unsigned long *RESTRICT src_ptr;	/* Pointer to x=xs1 on the next line in the source image */	unsigned long *RESTRICT next_src_ptr;	/* Pointer to the current pixel in the dest image */	unsigned long *RESTRICT dest_ptr;	/* Pointer to x=xd1 on the next line in the dest image */	unsigned long *next_dest_ptr;	/* Keep track of error in the source co-ordinates */	int x_error;	int y_error;	/* 1-unit steps "forward" through the source image, as steps in the image	 * byte array.	 */	int src_x_step_one;	int src_y_step_one;	/* normal steps "forward" through the source image, as steps in the image	 * byte array.	 */	int src_x_step_normal;	int src_y_step_normal;	/* 1-unit steps "forward" through the source image, as steps in the image	 * byte array.	 */	int x_error_step_normal;	int y_error_step_normal;	/* Countdown to the end of the destination image */	int x_count;	int y_count;	/* Start position in source, in whole pixels */	int src_x_start;	int src_y_start;	/* Error values for start X position in source */	int x_error_start;	/* 1-unit step down dest, in bytes. */	int dest_y_step;	/*DPRINTF("Nano-X: linear32_stretchflipblit( dest=(%d,%d) %dx%d )\n",	       dest_x_start, dest_y_start, width, height);*/	/* We add half a dest pixel here so we're sampling from the middle of	 * the dest pixel, not the top left corner.	 */	src_x_fraction += (x_step_fraction >> 1);	src_y_fraction += (y_step_fraction >> 1);	/* Seperate the whole part from the fractions.	 *	 * Also, We need to do lots of comparisons to see if error values are	 * >= x_denominator.  So subtract an extra x_denominator for speed - then	 * we can just check if it's >= 0.	 */	src_x_start = src_x_fraction / x_denominator;	src_y_start = src_y_fraction / y_denominator;	x_error_start = src_x_fraction - (src_x_start + 1) * x_denominator;	y_error = src_y_fraction - (src_y_start + 1) * y_denominator;	/* precalculate various deltas */	src_x_step_normal = x_step_fraction / x_denominator;	src_x_step_one = SIGN(x_step_fraction);	x_error_step_normal =		ABS(x_step_fraction) - ABS(src_x_step_normal) * x_denominator;	src_y_step_normal = y_step_fraction / y_denominator;	src_y_step_one = SIGN(y_step_fraction) * srcpsd->linelen;	y_error_step_normal =		ABS(y_step_fraction) - ABS(src_y_step_normal) * y_denominator;	src_y_step_normal *= srcpsd->linelen;	/* DPRINTF("ov_stretch_image8: X: One step=%d, err-=%d; normal step=%d, err+=%d\n                   Y: One step=%d, err-=%d; normal step=%d, err+=%d\n",	   src_x_step_one, x_denominator, src_x_step_normal, x_error_step_normal,	   src_y_step_one, y_denominator, src_y_step_normal, y_error_step_normal);	 */	/* Pointer to the first source pixel */	next_src_ptr =		((unsigned long *) srcpsd->addr) +		src_y_start * srcpsd->linelen + src_x_start;	/* Cache the width of a scanline in dest */	dest_y_step = dstpsd->linelen;	/* Pointer to the first dest pixel */	next_dest_ptr =		((unsigned long *) dstpsd->addr) +		(dest_y_start * dest_y_step) + dest_x_start;	/*	 * Note: The MWROP_SRC case below is a simple expansion of the	 * default case.  It can be removed without significant speed	 * penalty if you need to reduce code size.	 *	 * The MWROP_CLEAR case could be removed.  But it is a large	 * speed increase for a small quantity of code.	 */	switch (op & MWROP_EXTENSION) {	case MWROP_SRC:		/* Benchmarking shows that this while loop is faster than the equivalent		 * for loop: for(y_count=0; y_count<height; y_count++) { ... }		 */		y_count = height;		while (y_count-- > 0) {			src_ptr = next_src_ptr;			dest_ptr = next_dest_ptr;			x_error = x_error_start;			x_count = width;			while (x_count-- > 0) {				*dest_ptr++ = *src_ptr;				src_ptr += src_x_step_normal;				x_error += x_error_step_normal;				if (x_error >= 0) {					src_ptr += src_x_step_one;					x_error -= x_denominator;				}			}			next_dest_ptr += dest_y_step;			next_src_ptr += src_y_step_normal;			y_error += y_error_step_normal;			if (y_error >= 0) {				next_src_ptr += src_y_step_one;				y_error -= y_denominator;			}		}		break;	case MWROP_CLEAR:		y_count = height;		while (y_count-- > 0) {			dest_ptr = next_dest_ptr;			x_count = width;			while (x_count-- > 0) {				*dest_ptr++ = 0;			}			next_dest_ptr += dest_y_step;		}		break;	default:		y_count = height;		while (y_count-- > 0) {			src_ptr = next_src_ptr;			dest_ptr = next_dest_ptr;			x_error = x_error_start;			x_count = width;			while (x_count-- > 0) {				applyOp(MWROP_TO_MODE(op), *src_ptr, dest_ptr, ADDR32);				dest_ptr++;				src_ptr += src_x_step_normal;				x_error += x_error_step_normal;				if (x_error >= 0) {					src_ptr += src_x_step_one;					x_error -= x_denominator;				}			}			next_dest_ptr += dest_y_step;			next_src_ptr += src_y_step_normal;			y_error += y_error_step_normal;			if (y_error >= 0) {				next_src_ptr += src_y_step_one;				y_error -= y_denominator;			}		}		break;	}}#if MW_FEATURE_PSDOP_BITMAP_BYTES_LSB_FIRST/* psd->DrawArea operation PSDOP_BITMAP_BYTES_LSB_FIRST which * takes a pixmap, each line is byte aligned, and copies it * to the screen using fg_color and bg_color to replace a 1 * and 0 in the pixmap.  This pixmap is ordered the wrong * way around; it has the leftmost pixel (on the screen) in * LSB (Bit 0) of the bytes. * * The reason why this non-intuitive bit ordering is used is * to match the bit ordering used in the T1lib font rendering * library. * * Variables used in the gc: *       dstx, dsty, dsth, dstw   Destination rectangle *       srcx, srcy               Source rectangle *       src_linelen              Linesize in bytes of source *       pixels                   Pixmap data *       fg_color                 Color of a '1' bit

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -