Merge branch 'master' of git+ssh://joukj@git.freedesktop.org/git/mesa/mesa
[mesa.git] / src / mesa / shader / program.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5.3
4 *
5 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * \file program.c
27 * Vertex and fragment program support functions.
28 * \author Brian Paul
29 */
30
31
32 /**
33 * \mainpage Mesa vertex and fragment program module
34 *
35 * This module or directory contains most of the code for vertex and
36 * fragment programs and shaders, including state management, parsers,
37 * and (some) software routines for executing programs
38 */
39
40 #ifndef PROGRAM_H
41 #define PROGRAM_H
42
43 #include "mtypes.h"
44
45
46 extern struct gl_program _mesa_DummyProgram;
47
48
49 /*
50 * Internal functions
51 */
52
53 extern void
54 _mesa_init_program(GLcontext *ctx);
55
56 extern void
57 _mesa_free_program_data(GLcontext *ctx);
58
59 extern void
60 _mesa_update_default_objects_program(GLcontext *ctx);
61
62 extern void
63 _mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string);
64
65 extern const GLubyte *
66 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
67 GLint *line, GLint *col);
68
69
70 extern struct gl_program *
71 _mesa_init_vertex_program(GLcontext *ctx,
72 struct gl_vertex_program *prog,
73 GLenum target, GLuint id);
74
75 extern struct gl_program *
76 _mesa_init_fragment_program(GLcontext *ctx,
77 struct gl_fragment_program *prog,
78 GLenum target, GLuint id);
79
80 extern struct gl_program *
81 _mesa_new_program(GLcontext *ctx, GLenum target, GLuint id);
82
83 extern void
84 _mesa_delete_program(GLcontext *ctx, struct gl_program *prog);
85
86 extern struct gl_program *
87 _mesa_lookup_program(GLcontext *ctx, GLuint id);
88
89
90 extern struct gl_program *
91 _mesa_clone_program(GLcontext *ctx, const struct gl_program *prog);
92
93
94 /*
95 * API functions common to ARB/NV_vertex/fragment_program
96 */
97
98 extern void GLAPIENTRY
99 _mesa_BindProgram(GLenum target, GLuint id);
100
101 extern void GLAPIENTRY
102 _mesa_DeletePrograms(GLsizei n, const GLuint *ids);
103
104 extern void GLAPIENTRY
105 _mesa_GenPrograms(GLsizei n, GLuint *ids);
106
107
108
109 #endif /* PROGRAM_H */