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

📄 fblin24.c

📁 一个linux下的根文件系统的源码
💻 C
📖 第 1 页 / 共 3 页
字号:
/* * Copyright (c) 2000, 2001 Greg Haerr <greg@censoft.com> * Portions Copyright (c) 2002 by Koninklijke Philips Electronics N.V. * * 24bpp Linear Video Driver for Microwindows *//*#define NDEBUG*/#include <assert.h>#include <string.h>#include "device.h"#include "fb.h"/* Calc linelen and mmap size, return 0 on fail*/static intlinear24_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 /= 3;	}	return 1;}/* Set pixel at x, y, to pixelval c*/static voidlinear24_drawpixel(PSD psd, MWCOORD x, MWCOORD y, MWPIXELVAL c){	ADDR8	addr = psd->addr;	MWUCHAR	r, g, b;	assert (addr != 0);	assert (x >= 0 && x < psd->xres);	assert (y >= 0 && y < psd->yres);	assert (c < psd->ncolors);	r = PIXEL888RED(c);	g = PIXEL888GREEN(c);	b = PIXEL888BLUE(c);	addr += (x + y * psd->linelen) * 3;	DRAWON;	if(gr_mode == MWMODE_COPY) {		*addr++ = b;		*addr++ = g;		*addr = r;	} else {		applyOp(gr_mode, b, addr, ADDR8); ++addr;		applyOp(gr_mode, g, addr, ADDR8); ++addr;		applyOp(gr_mode, r, addr, ADDR8);	}	DRAWOFF;}/* Read pixel at x, y*/static MWPIXELVALlinear24_readpixel(PSD psd, MWCOORD x, MWCOORD y){	ADDR8	addr = psd->addr;	assert (addr != 0);	assert (x >= 0 && x < psd->xres);	assert (y >= 0 && y < psd->yres);	addr += (x + y * psd->linelen) * 3;	return RGB2PIXEL888(addr[2], addr[1], addr[0]);}/* Draw horizontal line from x1,y to x2,y including final point*/static voidlinear24_drawhorzline(PSD psd, MWCOORD x1, MWCOORD x2, MWCOORD y, MWPIXELVAL c){	ADDR8	addr = psd->addr;	MWUCHAR	r, g, b;	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);	r = PIXEL888RED(c);	g = PIXEL888GREEN(c);	b = PIXEL888BLUE(c);	addr += (x1 + y * psd->linelen) * 3;	DRAWON;	if(gr_mode == MWMODE_COPY) {		while(x1++ <= x2) {			*addr++ = b;			*addr++ = g;			*addr++ = r;		}	} else {		while (x1++ <= x2) {			applyOp(gr_mode, b, addr, ADDR8); ++addr;			applyOp(gr_mode, g, addr, ADDR8); ++addr;			applyOp(gr_mode, r, addr, ADDR8); ++addr;		}	}	DRAWOFF;}/* Draw a vertical line from x,y1 to x,y2 including final point*/static voidlinear24_drawvertline(PSD psd, MWCOORD x, MWCOORD y1, MWCOORD y2, MWPIXELVAL c){	ADDR8	addr = psd->addr;	int	linelen = psd->linelen * 3;	MWUCHAR	r, g, b;	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);	r = PIXEL888RED(c);	g = PIXEL888GREEN(c);	b = PIXEL888BLUE(c);	addr += (x + y1 * psd->linelen) * 3;	DRAWON;	if(gr_mode == MWMODE_COPY) {		while(y1++ <= y2) {			addr[0] = b;			addr[1] = g;			addr[2] = r;			addr += linelen;		}	} else {		while (y1++ <= y2) {			applyOp(gr_mode, b, &addr[0], ADDR8);			applyOp(gr_mode, g, &addr[1], ADDR8);			applyOp(gr_mode, r, &addr[2], ADDR8);			addr += linelen;		}	}	DRAWOFF;}/* srccopy bitblt, opcode is currently ignored*/static voidlinear24_blit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD w, MWCOORD h,	PSD srcpsd, MWCOORD srcx, MWCOORD srcy, long op){	ADDR8	dst = dstpsd->addr;	ADDR8	src = srcpsd->addr;	int	i;	int	dlinelen = dstpsd->linelen * 3;	int	slinelen = srcpsd->linelen * 3;	int	dlinelen_minus_w = (dstpsd->linelen - w) * 3;	int	slinelen_minus_w = (srcpsd->linelen - w) * 3;#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 * dstpsd->linelen) * 3;	src += (srcx + srcy * srcpsd->linelen) * 3;#if ALPHABLEND	if((op & MWROP_EXTENSION) != MWROP_BLENDCONSTANT)		goto stdblit;	alpha = op & 0xff;	while(--h >= 0) {		for(i=0; i<w; ++i) {			unsigned long s = *src++;			unsigned long d = *dst;			*dst++ = (unsigned char)(((s - d)*alpha)>>8) + d;			s = *src++;			d = *dst;			*dst++ = (unsigned char)(((s - d)*alpha)>>8) + d;			s = *src++;			d = *dst;			*dst++ = (unsigned char)(((s - d)*alpha)>>8) + d;		}		dst += dlinelen_minus_w;		src += slinelen_minus_w;	}	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_ memcpy is a _must_ in this routine*/			memmove(dst, src, w*3);			dst += dlinelen;			src += slinelen;		}	} else {		for(i=w*3; i>=0; --i) {			applyOp(MWROP_TO_MODE(op), *src, dst, ADDR8);			++src;			++dst;		}		dst += dlinelen_minus_w;		src += slinelen_minus_w;	}	DRAWOFF;}/* srccopy stretchblt*/static voidlinear24_stretchblit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD dstw,	MWCOORD dsth, PSD srcpsd, MWCOORD srcx, MWCOORD srcy, MWCOORD srcw,	MWCOORD srch, long op){	ADDR8	dst;	ADDR8	src;	int	dlinelen = dstpsd->linelen;	int	slinelen = srcpsd->linelen;	int	i, ymax;	int	row_pos, row_inc;	int	col_pos, col_inc;	unsigned char r = 0;	unsigned char g = 0;	unsigned char b = 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 = ((ADDR8)dstpsd->addr) + (dstx + dsty*dlinelen) * 3;		src = ((ADDR8)srcpsd->addr) + (srcx + (srcy-1)*slinelen) * 3;		/* 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) {				b = *src++;				g = *src++;				r = *src++;				col_pos -= 0x10000L;			}			*dst++ = b;			*dst++ = g;			*dst++ = r;			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 24-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 voidlinear24_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 char *RESTRICT src_ptr;	/* Pointer to x=xs1 on the next line in the source image */	unsigned char *RESTRICT next_src_ptr;	/* Pointer to the current pixel in the dest image */	unsigned char *RESTRICT dest_ptr;	/* Pointer to x=xd1 on the next line in the dest image */	unsigned char *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: linear24_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);	 */

⌨️ 快捷键说明

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