Home | History | Annotate | Download | only in main
      1 /**
      2  * \file vtxfmt.h
      3  *
      4  * \author Keith Whitwell <keithw (at) vmware.com>
      5  * \author Gareth Hughes
      6  */
      7 
      8 /*
      9  * Mesa 3-D graphics library
     10  *
     11  * Copyright (C) 1999-2004  Brian Paul   All Rights Reserved.
     12  *
     13  * Permission is hereby granted, free of charge, to any person obtaining a
     14  * copy of this software and associated documentation files (the "Software"),
     15  * to deal in the Software without restriction, including without limitation
     16  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     17  * and/or sell copies of the Software, and to permit persons to whom the
     18  * Software is furnished to do so, subject to the following conditions:
     19  *
     20  * The above copyright notice and this permission notice shall be included
     21  * in all copies or substantial portions of the Software.
     22  *
     23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
     24  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     25  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     26  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
     27  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
     28  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
     29  * OTHER DEALINGS IN THE SOFTWARE.
     30  */
     31 
     32 
     33 #ifndef _VTXFMT_H_
     34 #define _VTXFMT_H_
     35 
     36 #include "mtypes.h"
     37 
     38 #ifdef __cplusplus
     39 extern "C" {
     40 #endif
     41 
     42 extern void _mesa_install_exec_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
     43 extern void _mesa_install_save_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
     44 extern void _mesa_initialize_vbo_vtxfmt(struct gl_context *ctx);
     45 
     46 #ifdef __cplusplus
     47 } // extern "C"
     48 #endif
     49 
     50 #endif /* _VTXFMT_H_ */
     51