home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mesa5.zip / mesa5src.zip / varray.h < prev    next >
C/C++ Source or Header  |  2002-06-30  |  4KB  |  124 lines

  1. /* $Id: varray.h,v 1.14 2002/06/30 15:47:01 brianp Exp $ */
  2.  
  3. /*
  4.  * Mesa 3-D graphics library
  5.  * Version:  4.1
  6.  *
  7.  * Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
  8.  *
  9.  * Permission is hereby granted, free of charge, to any person obtaining a
  10.  * copy of this software and associated documentation files (the "Software"),
  11.  * to deal in the Software without restriction, including without limitation
  12.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13.  * and/or sell copies of the Software, and to permit persons to whom the
  14.  * Software is furnished to do so, subject to the following conditions:
  15.  *
  16.  * The above copyright notice and this permission notice shall be included
  17.  * in all copies or substantial portions of the Software.
  18.  *
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  20.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  23.  * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  24.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.  */
  26.  
  27.  
  28. #ifndef VARRAY_H
  29. #define VARRAY_H
  30.  
  31.  
  32. #include "mtypes.h"
  33.  
  34.  
  35. extern void
  36. _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
  37.                     const GLvoid *ptr);
  38.  
  39. extern void
  40. _mesa_UnlockArraysEXT( void );
  41.  
  42. extern void
  43. _mesa_LockArraysEXT(GLint first, GLsizei count);
  44.  
  45.  
  46. extern void
  47. _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
  48.  
  49.  
  50. extern void
  51. _mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
  52.  
  53.  
  54. extern void
  55. _mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
  56.  
  57.  
  58. extern void
  59. _mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
  60.                       const GLvoid *ptr);
  61.  
  62.  
  63. extern void
  64. _mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
  65.  
  66.  
  67. extern void
  68. _mesa_VertexPointerEXT(GLint size, GLenum type, GLsizei stride,
  69.                        GLsizei count, const GLvoid *ptr);
  70.  
  71.  
  72. extern void
  73. _mesa_NormalPointerEXT(GLenum type, GLsizei stride, GLsizei count,
  74.                        const GLvoid *ptr);
  75.  
  76.  
  77. extern void
  78. _mesa_ColorPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count,
  79.                       const GLvoid *ptr);
  80.  
  81.  
  82. extern void
  83. _mesa_IndexPointerEXT(GLenum type, GLsizei stride, GLsizei count,
  84.                       const GLvoid *ptr);
  85.  
  86.  
  87. extern void
  88. _mesa_TexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
  89.                          GLsizei count, const GLvoid *ptr);
  90.  
  91.  
  92. extern void
  93. _mesa_EdgeFlagPointerEXT(GLsizei stride, GLsizei count, const GLboolean *ptr);
  94.  
  95.  
  96. extern void
  97. _mesa_FogCoordPointerEXT(GLenum type, GLsizei stride, const GLvoid *ptr);
  98.  
  99.  
  100. extern void
  101. _mesa_SecondaryColorPointerEXT(GLint size, GLenum type,
  102.                    GLsizei stride, const GLvoid *ptr);
  103.  
  104.  
  105. extern void
  106. _mesa_VertexAttribPointerNV(GLuint index, GLint size, GLenum type,
  107.                             GLsizei stride, const GLvoid *pointer);
  108.  
  109.  
  110. extern void
  111. _mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
  112.  
  113.  
  114. extern void
  115. _mesa_MultiDrawArraysEXT( GLenum mode, GLint *first,
  116.                           GLsizei *count, GLsizei primcount );
  117.  
  118. extern void
  119. _mesa_MultiDrawElementsEXT( GLenum mode, const GLsizei *count, GLenum type,
  120.                             const GLvoid **indices, GLsizei primcount );
  121.  
  122.  
  123. #endif
  124.