Ignore:
Timestamp:
May 23, 2000, 10:35:01 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/varray.h

    r2938 r3597  
    1 /* $Id: varray.h,v 1.1 2000-02-29 00:48:42 sandervl Exp $ */
     1/* $Id: varray.h,v 1.2 2000-05-23 20:34:59 jeroen Exp $ */
    22
    33/*
     
    3333
    3434
    35 extern void gl_VertexPointer( GLcontext *ctx,
    36                               GLint size, GLenum type, GLsizei stride,
    37                               const GLvoid *ptr );
     35extern void
     36_mesa_VertexPointer(GLint size, GLenum type, GLsizei stride,
     37                    const GLvoid *ptr);
    3838
    3939
    40 extern void gl_NormalPointer( GLcontext *ctx,
    41                               GLenum type, GLsizei stride, const GLvoid *ptr );
     40extern void
     41_mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
    4242
    4343
    44 extern void gl_ColorPointer( GLcontext *ctx,
    45                              GLint size, GLenum type, GLsizei stride,
    46                              const GLvoid *ptr );
     44extern void
     45_mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
    4746
    4847
    49 extern void gl_IndexPointer( GLcontext *ctx,
    50                                 GLenum type, GLsizei stride,
    51                                 const GLvoid *ptr );
     48extern void
     49_mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr);
    5250
    5351
    54 extern void gl_TexCoordPointer( GLcontext *ctx,
    55                                 GLint size, GLenum type, GLsizei stride,
    56                                 const GLvoid *ptr );
     52extern void
     53_mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
     54                      const GLvoid *ptr);
    5755
    5856
    59 extern void gl_EdgeFlagPointer( GLcontext *ctx,
    60                                 GLsizei stride, const GLboolean *ptr );
     57extern void
     58_mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr);
    6159
    6260
    63 extern void gl_GetPointerv( GLcontext *ctx, GLenum pname, GLvoid **params );
     61extern void
     62_mesa_ArrayElement( GLint );
    6463
    6564
    66 
    67 extern void gl_DrawArrays( GLcontext *ctx,
    68                            GLenum mode, GLint first, GLsizei count );
    69 
    70 extern void gl_save_DrawArrays( GLcontext *ctx,
    71                                 GLenum mode, GLint first, GLsizei count );
     65extern void
     66_mesa_DrawArrays(GLenum mode, GLint first, GLsizei count);
    7267
    7368
    74 extern void gl_DrawElements( GLcontext *ctx,
    75                              GLenum mode, GLsizei count,
    76                              GLenum type, const GLvoid *indices );
    77 
    78 extern void gl_save_DrawElements( GLcontext *ctx,
    79                                   GLenum mode, GLsizei count,
    80                                   GLenum type, const GLvoid *indices );
     69extern void
     70_mesa_save_DrawArrays(GLenum mode, GLint first, GLsizei count);
    8171
    8272
    83 extern void gl_InterleavedArrays( GLcontext *ctx,
    84                                   GLenum format, GLsizei stride,
    85                                   const GLvoid *pointer );
    86 
    87 extern void gl_save_InterleavedArrays( GLcontext *ctx,
    88                                        GLenum format, GLsizei stride,
    89                                        const GLvoid *pointer );
     73extern void
     74_mesa_DrawElements(GLenum mode, GLsizei count, GLenum type,
     75                   const GLvoid *indices);
    9076
    9177
    92 extern void gl_DrawRangeElements( GLcontext *ctx, GLenum mode, GLuint start,
    93                                   GLuint end, GLsizei count, GLenum type,
    94                                   const GLvoid *indices );
     78extern void
     79_mesa_save_DrawElements(GLenum mode, GLsizei count,
     80                        GLenum type, const GLvoid *indices);
    9581
    96 extern void gl_save_DrawRangeElements( GLcontext *ctx, GLenum mode,
    97                                        GLuint start, GLuint end, GLsizei count,
    98                                        GLenum type, const GLvoid *indices );
     82
     83extern void
     84_mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
     85
     86extern void
     87_mesa_save_InterleavedArrays(GLenum format, GLsizei stride,
     88                             const GLvoid *pointer);
     89
     90
     91extern void
     92_mesa_DrawRangeElements(GLenum mode, GLuint start,
     93                        GLuint end, GLsizei count, GLenum type,
     94                        const GLvoid *indices);
     95
     96extern void
     97_mesa_save_DrawRangeElements(GLenum mode,
     98                             GLuint start, GLuint end, GLsizei count,
     99                             GLenum type, const GLvoid *indices );
    99100
    100101
    101102extern void gl_exec_array_elements( GLcontext *ctx,
    102                                     struct immediate *IM,
    103                                     GLuint start,
    104                                     GLuint end );
     103                                    struct immediate *IM,
     104                                    GLuint start,
     105                                    GLuint end );
    105106
    106107extern void gl_update_client_state( GLcontext *ctx );
Note: See TracChangeset for help on using the changeset viewer.