home *** CD-ROM | disk | FTP | other *** search
/ GRIPS 2: Government Rast…rocessing Software & Data / GRIPS_2.cdr / dos / imdisp / source / ativga.h < prev    next >
C/C++ Source or Header  |  1990-10-04  |  649b  |  14 lines

  1. /*
  2.         ATI_Init         - Initializes the graphics board.
  3.         ATI_WritePalette - Writes the color palette out to the board.
  4.         ATI_ReadPixel    - Reads a pixel value given x,y coordinates
  5.         ATI_WritePixel   - Writes a pixel value to gvin x,y coordinate.
  6.         ATI_Bank         - Sets the card to one of its 8 banks
  7. */
  8. extern   int ATI_Init(void);
  9. extern   int ATI_WritePalette(unsigned char palbuf[][3], int low, int high);
  10. extern   int ATI_ReadPixel(unsigned int line, unsigned int sample);
  11. extern   int ATI_WritePixel(unsigned int x, unsigned int y, unsigned int
  12.              color);
  13. extern   int ATI_Bank(void);
  14.