OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [MW_0_8_9PRE7/] [mw/] [src/] [drivers/] [scr_debug.c] - Diff between revs 673 and 674

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 673 Rev 674
/*
/*
 * Copyright (c) 1999 Greg Haerr <greg@censoft.com>
 * Copyright (c) 1999 Greg Haerr <greg@censoft.com>
 *
 *
 * Experimental debug screen driver for Microwindows
 * Experimental debug screen driver for Microwindows
 *
 *
 * 21-Feb-2000 ajr@ecs.soton.ac.uk
 * 21-Feb-2000 ajr@ecs.soton.ac.uk
 * Stripped down the VGA driver to make a debug driver so that I can debug the
 * Stripped down the VGA driver to make a debug driver so that I can debug the
 * rest of the code.
 * rest of the code.
 *
 *
 */
 */
 
 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include "device.h"
#include "device.h"
#include "genfont.h"
#include "genfont.h"
#include "genmem.h"
#include "genmem.h"
 
 
/* DBG driver entry points*/
/* DBG driver entry points*/
static PSD  DBG_open(PSD psd);
static PSD  DBG_open(PSD psd);
static void DBG_close(PSD psd);
static void DBG_close(PSD psd);
static void DBG_getscreeninfo(PSD psd,PMWSCREENINFO psi);;
static void DBG_getscreeninfo(PSD psd,PMWSCREENINFO psi);;
static void DBG_setpalette(PSD psd,int first,int count,MWPALENTRY *pal);
static void DBG_setpalette(PSD psd,int first,int count,MWPALENTRY *pal);
static void DBG_drawpixel(PSD psd,MWCOORD x, MWCOORD y, MWPIXELVAL c);
static void DBG_drawpixel(PSD psd,MWCOORD x, MWCOORD y, MWPIXELVAL c);
static MWPIXELVAL DBG_readpixel(PSD psd,MWCOORD x, MWCOORD y);
static MWPIXELVAL DBG_readpixel(PSD psd,MWCOORD x, MWCOORD y);
static void DBG_drawhline(PSD psd,MWCOORD x1, MWCOORD x2, MWCOORD y, MWPIXELVAL c);
static void DBG_drawhline(PSD psd,MWCOORD x1, MWCOORD x2, MWCOORD y, MWPIXELVAL c);
static void DBG_drawvline(PSD psd,MWCOORD x,MWCOORD y1,MWCOORD y2,MWPIXELVAL c);
static void DBG_drawvline(PSD psd,MWCOORD x,MWCOORD y1,MWCOORD y2,MWPIXELVAL c);
static void DBG_fillrect(PSD psd,MWCOORD x1,MWCOORD y1,MWCOORD x2,MWCOORD y2,
static void DBG_fillrect(PSD psd,MWCOORD x1,MWCOORD y1,MWCOORD x2,MWCOORD y2,
                MWPIXELVAL c);
                MWPIXELVAL c);
void DBG_blit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD w, MWCOORD h,
void DBG_blit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD w, MWCOORD h,
                PSD srcpsd, MWCOORD srcx, MWCOORD srcy, long op);
                PSD srcpsd, MWCOORD srcx, MWCOORD srcy, long op);
 
 
SCREENDEVICE    scrdev = {
SCREENDEVICE    scrdev = {
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL,
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL,
        DBG_open,
        DBG_open,
        DBG_close,
        DBG_close,
        DBG_getscreeninfo,
        DBG_getscreeninfo,
        DBG_setpalette,
        DBG_setpalette,
        DBG_drawpixel,
        DBG_drawpixel,
        DBG_readpixel,
        DBG_readpixel,
        DBG_drawhline,
        DBG_drawhline,
        DBG_drawvline,
        DBG_drawvline,
        DBG_fillrect,
        DBG_fillrect,
        gen_fonts,
        gen_fonts,
        DBG_blit,
        DBG_blit,
        NULL,                   /* PreSelect*/
        NULL,                   /* PreSelect*/
        NULL,                   /* DrawArea subdriver*/
        NULL,                   /* DrawArea subdriver*/
        NULL,                   /* SetIOPermissions*/
        NULL,                   /* SetIOPermissions*/
        gen_allocatememgc,
        gen_allocatememgc,
        NULL,                   /* MapMemGC*/
        NULL,                   /* MapMemGC*/
        NULL                    /* FreeMemGC*/
        NULL                    /* FreeMemGC*/
};
};
 
 
#define printd(_a)
#define printd(_a)
 
 
static PSD
static PSD
DBG_open(PSD psd)
DBG_open(PSD psd)
{
{
        /* init driver variables depending on ega/vga mode*/
        /* init driver variables depending on ega/vga mode*/
        psd->xres = psd->xvirtres = 640;
        psd->xres = psd->xvirtres = 640;
        psd->yres = psd->yvirtres = 480;
        psd->yres = psd->yvirtres = 480;
        psd->planes = 4;
        psd->planes = 4;
        psd->bpp = 4;
        psd->bpp = 4;
        psd->ncolors = 16;
        psd->ncolors = 16;
        psd->pixtype = MWPF_PALETTE;
        psd->pixtype = MWPF_PALETTE;
        psd->flags = PSF_SCREEN;
        psd->flags = PSF_SCREEN;
 
 
        return psd;
        return psd;
}
}
 
 
static void
static void
DBG_close(PSD psd)
DBG_close(PSD psd)
{
{
        printd("DBG_close()\n");
        printd("DBG_close()\n");
}
}
 
 
static void
static void
DBG_getscreeninfo(PSD psd,PMWSCREENINFO psi)
DBG_getscreeninfo(PSD psd,PMWSCREENINFO psi)
{
{
        psi->rows = psd->yvirtres;
        psi->rows = psd->yvirtres;
        psi->cols = psd->xvirtres;
        psi->cols = psd->xvirtres;
        psi->planes = psd->planes;
        psi->planes = psd->planes;
        psi->bpp = psd->bpp;
        psi->bpp = psd->bpp;
        psi->ncolors = psd->ncolors;
        psi->ncolors = psd->ncolors;
        psi->pixtype = psd->pixtype;
        psi->pixtype = psd->pixtype;
        psi->fonts = 1;
        psi->fonts = 1;
 
 
        /* DBG 640x480*/
        /* DBG 640x480*/
        psi->xdpcm = 27;        /* assumes screen width of 24 cm*/
        psi->xdpcm = 27;        /* assumes screen width of 24 cm*/
        psi->ydpcm = 27;        /* assumes screen height of 18 cm*/
        psi->ydpcm = 27;        /* assumes screen height of 18 cm*/
        printd("DBG_getscreeninfo()\n");
        printd("DBG_getscreeninfo()\n");
}
}
 
 
static void
static void
DBG_setpalette(PSD psd,int first,int count,MWPALENTRY *pal)
DBG_setpalette(PSD psd,int first,int count,MWPALENTRY *pal)
{
{
        printd("DBG_setpalette()\n");
        printd("DBG_setpalette()\n");
}
}
 
 
static void
static void
DBG_drawpixel(PSD psd,MWCOORD x, MWCOORD y, MWPIXELVAL c)
DBG_drawpixel(PSD psd,MWCOORD x, MWCOORD y, MWPIXELVAL c)
{
{
        printd("DBG_drawpixel()\n");
        printd("DBG_drawpixel()\n");
}
}
 
 
static MWPIXELVAL
static MWPIXELVAL
DBG_readpixel(PSD psd,MWCOORD x, MWCOORD y)
DBG_readpixel(PSD psd,MWCOORD x, MWCOORD y)
{
{
        printd("DBG_readpixel()\n");
        printd("DBG_readpixel()\n");
}
}
 
 
/* Draw horizontal line from x1,y to x2,y including final point*/
/* Draw horizontal line from x1,y to x2,y including final point*/
static void
static void
DBG_drawhline(PSD psd,MWCOORD x1, MWCOORD x2, MWCOORD y, MWPIXELVAL c)
DBG_drawhline(PSD psd,MWCOORD x1, MWCOORD x2, MWCOORD y, MWPIXELVAL c)
{
{
        printd("DBG_drawhline()\n");
        printd("DBG_drawhline()\n");
}
}
 
 
/* Draw a vertical line from x,y1 to x,y2 including final point*/
/* Draw a vertical line from x,y1 to x,y2 including final point*/
static void
static void
DBG_drawvline(PSD psd,MWCOORD x, MWCOORD y1, MWCOORD y2, MWPIXELVAL c)
DBG_drawvline(PSD psd,MWCOORD x, MWCOORD y1, MWCOORD y2, MWPIXELVAL c)
{
{
        printd("DBG_drawvline()\n");
        printd("DBG_drawvline()\n");
}
}
 
 
static void
static void
DBG_fillrect(PSD psd,MWCOORD x1, MWCOORD y1, MWCOORD x2, MWCOORD y2,
DBG_fillrect(PSD psd,MWCOORD x1, MWCOORD y1, MWCOORD x2, MWCOORD y2,
        MWPIXELVAL c)
        MWPIXELVAL c)
{
{
        printd("DBG_fillrect()\n");
        printd("DBG_fillrect()\n");
}
}
 
 
void DBG_blit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD w, MWCOORD h,
void DBG_blit(PSD dstpsd, MWCOORD dstx, MWCOORD dsty, MWCOORD w, MWCOORD h,
        PSD srcpsd, MWCOORD srcx, MWCOORD srcy, long op)
        PSD srcpsd, MWCOORD srcx, MWCOORD srcy, long op)
{
{
        printd("DBG_blit()\n");
        printd("DBG_blit()\n");
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.