home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Examples / DriverKit / ATI / ATI_reloc.tproj / ATI.h next >
Text File  |  1993-08-03  |  979b  |  40 lines

  1. /* Copyright (c) 1992, 1993 NeXT Computer, Inc.  All rights reserved. 
  2.  *
  3.  * ATI.h - Definition of the ATi display driver class.
  4.  *
  5.  * HISTORY
  6.  * 12 Oct 92    Joe Pasqua
  7.  *      Created. 
  8. * 01 June 93    Mike Paquette
  9.  *    Rewrite: Convert from Corsair device driver to general MACH32 chipset
  10.  *         driver.
  11.  *  7 July 1993    Derek B Clegg
  12.  *    Cleaned up for external release.
  13.  */
  14. #ifndef ATI_H__
  15. #define ATI_H__
  16.  
  17. #import <driverkit/IOFrameBufferDisplay.h>
  18. #import "ATIModes.h"
  19.  
  20. @interface ATI:IOFrameBufferDisplay
  21. {
  22.     /* The flavor of ATI chipset which we have. */
  23.     ATIFlavor ati_flavor;
  24.  
  25.     /* Setup parameters. */
  26.     const ATI_CRTCSetup *CRTControllerSetup;
  27.  
  28.     /* The information for the selected display mode. */
  29.     const IODisplayInfo *displayMode;
  30.  
  31.     unsigned int _ATI_reserved[8];
  32. }
  33. - (void)enterLinearMode;
  34. - (void)revertToVGAMode;
  35. - initFromDeviceDescription: deviceDescription;
  36. - setTransferTable:(const unsigned int *)table count:(int)count;
  37. @end
  38.  
  39. #endif    /* ATI_H__ */
  40.