ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/include/video.h
(Generate patch)

Comparing SheepShaver/src/include/video.h (file contents):
Revision 1.8 by gbeauche, 2004-11-13T14:09:16Z vs.
Revision 1.12 by gbeauche, 2005-03-27T13:44:45Z

# Line 1 | Line 1
1   /*
2   *  video.h - Video/graphics emulation
3   *
4 < *  SheepShaver (C) 1997-2004 Marc Hellwig and Christian Bauer
4 > *  SheepShaver (C) 1997-2005 Marc Hellwig and Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 90 | Line 90 | enum { // viAppleID
90          APPLE_1152x900,
91          APPLE_1280x1024,
92          APPLE_1600x1200,
93 +        APPLE_CUSTOM,
94          APPLE_ID_MIN = APPLE_640x480,
95 <        APPLE_ID_MAX = APPLE_1600x1200
95 >        APPLE_ID_MAX = APPLE_CUSTOM
96   };
97  
98   enum {  // Display type
# Line 108 | Line 109 | extern rgb_color mac_pal[256];
109   extern uint8 remap_mac_be[256];
110   extern uint8 MacCursor[68];
111  
111 struct GammaTbl;
112
112   struct VidLocals{
113          uint16  saveMode;
114          uint32  saveData;
115          uint16  savePage;
116          uint32  saveBaseAddr;
117 <        GammaTbl *gammaTable;           // Current gamma table
117 >        uint32  gammaTable;                     // Mac address of gamma tble
118          uint32  maxGammaTableSize;      // Biggest gamma table allocated
119          uint32  saveVidParms;
120          bool    luminanceMapping;       // Luminance mapping on/off
# Line 125 | Line 124 | struct VidLocals{
124          uint32  cursorSet;
125          uint32  vslServiceID;           // VSL interrupt service ID
126          bool    interruptsEnabled;      // VBL interrupts on/off
127 <        uint32  regEntryID[4];
127 >        uint32  regEntryID;                     // Mac address of the service owner
128   };
129  
130   extern VidLocals *private_data; // Pointer to driver local variables (there is only one display, so this is ok)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines