The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/chips/xcfb_monitor.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* 
    2  * Mach Operating System
    3  * Copyright (c) 1992 Carnegie Mellon University
    4  * Copyright (c) 1992 Helsinki University of Technology
    5  * All Rights Reserved.
    6  * 
    7  * Permission to use, copy, modify and distribute this software and its
    8  * documentation is hereby granted, provided that both the copyright
    9  * notice and this permission notice appear in all copies of the
   10  * software, derivative works or modified versions, and any portions
   11  * thereof, and that both notices appear in supporting documentation.
   12  * 
   13  * CARNEGIE MELLON AND HELSINKI UNIVERSITY OF TECHNOLOGY ALLOW FREE USE
   14  * OF THIS SOFTWARE IN ITS "AS IS" CONDITION.  CARNEGIE MELLON AND
   15  * HELSINKI UNIVERSITY OF TECHNOLOGY DISCLAIM ANY LIABILITY OF ANY KIND
   16  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
   17  * 
   18  * Carnegie Mellon requests users of this software to return to
   19  * 
   20  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
   21  *  School of Computer Science
   22  *  Carnegie Mellon University
   23  *  Pittsburgh PA 15213-3890
   24  * 
   25  * any improvements or extensions that they make and grant Carnegie Mellon 
   26  * the rights to redistribute these changes.
   27  */
   28 /*
   29  * HISTORY
   30  * $Log:        xcfb_monitor.h,v $
   31  * Revision 2.2  93/01/14  17:22:30  danner
   32  *      Created.
   33  *      [92/11/25            jtp]
   34  * 
   35  */
   36 /*
   37  *      File: xcfb_monitor.h
   38  *      Author: Jukka Partanen, Helsinki University of Technology 1992.
   39  *
   40  *      A type describing the physical properties of a monitor
   41  */
   42 
   43 #ifndef _XCFB_MONITOR_H_
   44 #define _XCFB_MONITOR_H_
   45 
   46 typedef struct xcfb_monitor_type {
   47         char *name;
   48         short frame_visible_width; /* pixels */
   49         short frame_visible_height;
   50         short frame_scanline_width;
   51         short frame_height;
   52         short half_sync;        /* screen units (= 4 pixels) */
   53         short back_porch;
   54         short v_sync;           /* lines */
   55         short v_pre_equalize;
   56         short v_post_equalize;
   57         short v_blank;
   58         short line_time;        /* screen units */
   59         short line_start;
   60         short mem_init;         /* some units */
   61         short xfer_delay;
   62 } *xcfb_monitor_type_t;
   63 
   64 #endif /* _XCFB_MONITOR_H_ */

Cache object: 658d138417154f96d5d22421f97f33fc


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.