Merge branch 'mesa_7_7_branch'
[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 "main/mtypes.h"
44
45
46 extern struct gl_program _mesa_DummyProgram;
47
48
49 extern void
50 _mesa_init_program(GLcontext *ctx);
51
52 extern void
53 _mesa_free_program_data(GLcontext *ctx);
54
55 extern void
56 _mesa_update_default_objects_program(GLcontext *ctx);
57
58 extern void
59 _mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string);
60
61 extern const GLubyte *
62 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
63 GLint *line, GLint *col);
64
65
66 extern struct gl_program *
67 _mesa_init_vertex_program(GLcontext *ctx,
68 struct gl_vertex_program *prog,
69 GLenum target, GLuint id);
70
71 extern struct gl_program *
72 _mesa_init_fragment_program(GLcontext *ctx,
73 struct gl_fragment_program *prog,
74 GLenum target, GLuint id);
75
76 extern struct gl_program *
77 _mesa_new_program(GLcontext *ctx, GLenum target, GLuint id);
78
79 extern void
80 _mesa_delete_program(GLcontext *ctx, struct gl_program *prog);
81
82 extern struct gl_program *
83 _mesa_lookup_program(GLcontext *ctx, GLuint id);
84
85 extern void
86 _mesa_reference_program(GLcontext *ctx,
87 struct gl_program **ptr,
88 struct gl_program *prog);
89
90 static INLINE void
91 _mesa_reference_vertprog(GLcontext *ctx,
92 struct gl_vertex_program **ptr,
93 struct gl_vertex_program *prog)
94 {
95 _mesa_reference_program(ctx, (struct gl_program **) ptr,
96 (struct gl_program *) prog);
97 }
98
99 static INLINE void
100 _mesa_reference_fragprog(GLcontext *ctx,
101 struct gl_fragment_program **ptr,
102 struct gl_fragment_program *prog)
103 {
104 _mesa_reference_program(ctx, (struct gl_program **) ptr,
105 (struct gl_program *) prog);
106 }
107
108 extern struct gl_program *
109 _mesa_clone_program(GLcontext *ctx, const struct gl_program *prog);
110
111 extern GLboolean
112 _mesa_insert_instructions(struct gl_program *prog, GLuint start, GLuint count);
113
114 extern GLboolean
115 _mesa_delete_instructions(struct gl_program *prog, GLuint start, GLuint count);
116
117 extern struct gl_program *
118 _mesa_combine_programs(GLcontext *ctx,
119 const struct gl_program *progA,
120 const struct gl_program *progB);
121
122 extern GLint
123 _mesa_find_free_register(const struct gl_program *prog, GLuint regFile);
124
125 extern void
126 _mesa_postprocess_program(GLcontext *ctx, struct gl_program *prog);
127
128
129 #endif /* PROGRAM_H */