glapi / teximage: implement EGLImageTargetTexStorageEXT
[mesa.git] / src / mesa / main / vtxfmt.h
1 /**
2 * \file vtxfmt.h
3 *
4 * \author Keith Whitwell <keithw@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 "dd.h"
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42 struct gl_context;
43
44 extern void _mesa_install_exec_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
45 extern void _mesa_install_save_vtxfmt( struct gl_context *ctx, const GLvertexformat *vfmt );
46 extern void _mesa_initialize_vbo_vtxfmt(struct gl_context *ctx);
47
48 #ifdef __cplusplus
49 } // extern "C"
50 #endif
51
52 #endif /* _VTXFMT_H_ */