home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 2000 April & May / AMIGA_2000_04.iso / patches / mesa3.1 / mesa-3_1.lha / src / AOS / wrpDisplay / wrpFastPixels.c < prev    next >
Encoding:
Text File  |  1999-09-23  |  1.3 KB  |  40 lines

  1. /*
  2.  * $Id: $
  3.  */
  4.  
  5. /*
  6.  * Mesa 3-D graphics library
  7.  * Version:  3.1
  8.  * Copyright (C) 1995  Brian Paul  (brianp@ssec.wisc.edu)
  9.  *
  10.  * This library is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU Library General Public
  12.  * License as published by the Free Software Foundation; either
  13.  * version 2 of the License, or (at your option) any later version.
  14.  *
  15.  * This library is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18.  * Library General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU Library General Public
  21.  * License along with this library; if not, write to the Free
  22.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24.  
  25. GLboolean wrpDirectDrawPixels(GLcontext * ctx,
  26.                   const struct gl_pixelstore_attrib *unpack,
  27.                   GLsizei width, GLsizei height,
  28.                   GLenum format, GLenum type,
  29.                   const GLvoid * pixels) {
  30.   return GL_FALSE;
  31. }
  32.  
  33. GLboolean wrpDirectDrawPixelsDB(GLcontext * ctx,
  34.                     const struct gl_pixelstore_attrib *unpack,
  35.                     GLsizei width, GLsizei height,
  36.                     GLenum format, GLenum type,
  37.                     const GLvoid * pixels) {
  38.   return GL_FALSE;
  39. }
  40.