1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/* $Id: hline.c,v 1.1.1.1 2001/05/12 23:01:45 cegger Exp $
******************************************************************************
Graphics library for GGI. Horizontal lines.
Copyright (C) 1995 Andreas Beck [becka@ggi-project.org]
Copyright (C) 1999 Marcus Sundberg [marcus@ggi-project.org]
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************
*/
#include <string.h>
#include "lin4rlib.h"
/**********************************/
/* draw/get/put a horizontal line */
/**********************************/
static inline void
do_drawhline(ggi_visual *vis, int x, int y, int w)
{
uint8 *fb;
uint8 fg;
fb = (uint8 *) LIBGGI_CURWRITE(vis)+y*LIBGGI_FB_W_STRIDE(vis)+(x/2);
fg = (uint8) LIBGGI_GC_FGCOLOR(vis) | (LIBGGI_GC_FGCOLOR(vis)<<4);
PREPARE_FB(vis);
/* x is odd. Read-modify-write right pixel. */
if (x & 0x01) {
*fb = (*fb & 0x0f) | (fg & 0xf0);
fb++;
w--;
}
memset(fb, fg, w/2);
/* Dangling right pixel. */
if (w & 0x01) {
fb += w/2;
*fb = (*fb & 0xf0) | (fg & 0x0f);
}
}
int GGI_lin4r_drawhline(ggi_visual *vis, int x, int y, int w)
{
LIBGGICLIP_XYW(vis, x, y, w);
do_drawhline(vis, x, y, w);
return 0;
}
int GGI_lin4r_drawhline_nc(ggi_visual *vis, int x, int y, int w)
{
do_drawhline(vis, x, y, w);
return 0;
}
int GGI_lin4r_puthline(ggi_visual *vis, int x, int y, int w, void *buffer)
{
uint8 *fb;
uint16 color;
uint8 *buf = (uint8 *)buffer;
LIBGGICLIP_XYW_BUFMOD(vis, x, y, w, buf, /2);
PREPARE_FB(vis);
fb = (uint8*)LIBGGI_CURWRITE(vis)+y*LIBGGI_FB_W_STRIDE(vis)+(x/2);
/* Might as well take the memcpy speed up (multiple byte copy). */
if (!(x & 0x01)) {
memcpy(fb,buf,w/2);
if (w & 0x01)
*(fb+(w/2)) = ( *(fb+(w/2)) & 0x0F)
| (*((uint8 *)buf+(w/2)) << 4);
return 0;
}
/* x is odd. */
/* Color is a 12-bit quantity. Upper 8 bits hold the memory to copy.
* Lower 4 bits hold the lower 4 bits of the buffer byte read; we'll
* need it next loop. */
/* Could be optimized for multiple-byte copy. */
color = *fb >> 4;
while (w-=2 > 0) {
color <<= 8;
color |= *(buf++);
*(fb++) = color >> 4;
}
if (!w) {
*fb = (color << 4) | (*fb & 0x0F);
}
return 0;
}
int GGI_lin4r_gethline(ggi_visual *vis,int x,int y,int w,void *buffer)
{
uint8 *fb;
uint16 color;
uint8 *buf = (uint8 *)buffer;
PREPARE_FB(vis);
fb = (uint8*)LIBGGI_CURREAD(vis)+y*LIBGGI_FB_R_STRIDE(vis)+(x/2);
/* If width is odd, the last 4 bits of the buffer's last
* byte will hold an extraneous pixel. No big deal. */
if (!(x & 0x01)) {
memcpy(buf, fb, (w/2) + (w & 0x01));
return 0;
}
/* x is odd. */
color = *fb & 0x0F;
while (w-=2 > 0)
{
color <<= 8;
color |= *(++fb);
*(buf++) = color >> 4;
}
return 0;
}
|