Merge commit 'origin/gallium-master-merge'
[mesa.git] / src / mesa / state_tracker / st_cb_program.c
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Keith Whitwell <keith@tungstengraphics.com>
31 */
32
33 #include "main/glheader.h"
34 #include "main/macros.h"
35 #include "main/enums.h"
36 #include "shader/prog_instruction.h"
37 #include "shader/prog_parameter.h"
38 #include "shader/program.h"
39 #include "shader/programopt.h"
40 #include "shader/shader_api.h"
41
42 #include "cso_cache/cso_context.h"
43 #include "draw/draw_context.h"
44
45 #include "st_context.h"
46 #include "st_program.h"
47 #include "st_atom_shader.h"
48 #include "st_cb_program.h"
49
50
51 static GLuint SerialNo = 1;
52
53
54 /**
55 * Called via ctx->Driver.BindProgram() to bind an ARB vertex or
56 * fragment program.
57 */
58 static void st_bind_program( GLcontext *ctx,
59 GLenum target,
60 struct gl_program *prog )
61 {
62 struct st_context *st = st_context(ctx);
63
64 switch (target) {
65 case GL_VERTEX_PROGRAM_ARB:
66 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
67 break;
68 case GL_FRAGMENT_PROGRAM_ARB:
69 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
70 break;
71 }
72 }
73
74
75 /**
76 * Called via ctx->Driver.UseProgram() to bind a linked GLSL program
77 * (vertex shader + fragment shader).
78 */
79 static void st_use_program( GLcontext *ctx,
80 GLuint program )
81 {
82 struct st_context *st = st_context(ctx);
83
84 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
85 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
86
87 _mesa_use_program(ctx, program);
88 }
89
90
91
92 /**
93 * Called via ctx->Driver.NewProgram() to allocate a new vertex or
94 * fragment program.
95 */
96 static struct gl_program *st_new_program( GLcontext *ctx,
97 GLenum target,
98 GLuint id )
99 {
100 switch (target) {
101 case GL_VERTEX_PROGRAM_ARB: {
102 struct st_vertex_program *prog = CALLOC_STRUCT(st_vertex_program);
103
104 prog->serialNo = SerialNo++;
105
106 return _mesa_init_vertex_program( ctx,
107 &prog->Base,
108 target,
109 id );
110 }
111
112 case GL_FRAGMENT_PROGRAM_ARB:
113 case GL_FRAGMENT_PROGRAM_NV: {
114 struct st_fragment_program *prog = CALLOC_STRUCT(st_fragment_program);
115
116 prog->serialNo = SerialNo++;
117
118 return _mesa_init_fragment_program( ctx,
119 &prog->Base,
120 target,
121 id );
122 }
123
124 default:
125 assert(0);
126 return NULL;
127 }
128 }
129
130
131 void
132 st_delete_program(GLcontext *ctx, struct gl_program *prog)
133 {
134 struct st_context *st = st_context(ctx);
135
136 switch( prog->Target ) {
137 case GL_VERTEX_PROGRAM_ARB:
138 {
139 struct st_vertex_program *stvp = (struct st_vertex_program *) prog;
140
141 if (stvp->driver_shader) {
142 cso_delete_vertex_shader(st->cso_context, stvp->driver_shader);
143 stvp->driver_shader = NULL;
144 }
145
146 if (stvp->draw_shader) {
147 #if FEATURE_feedback || FEATURE_drawpix
148 /* this would only have been allocated for the RasterPos path */
149 draw_delete_vertex_shader(st->draw, stvp->draw_shader);
150 stvp->draw_shader = NULL;
151 #endif
152 }
153
154 if (stvp->state.tokens) {
155 FREE((void *) stvp->state.tokens);
156 stvp->state.tokens = NULL;
157 }
158 }
159 break;
160 case GL_FRAGMENT_PROGRAM_ARB:
161 {
162 struct st_fragment_program *stfp = (struct st_fragment_program *) prog;
163
164 if (stfp->driver_shader) {
165 cso_delete_fragment_shader(st->cso_context, stfp->driver_shader);
166 stfp->driver_shader = NULL;
167 }
168
169 if (stfp->state.tokens) {
170 FREE((void *) stfp->state.tokens);
171 stfp->state.tokens = NULL;
172 }
173
174 if (stfp->bitmap_program) {
175 struct gl_program *prg = &stfp->bitmap_program->Base.Base;
176 _mesa_reference_program(ctx, &prg, NULL);
177 stfp->bitmap_program = NULL;
178 }
179
180 st_free_translated_vertex_programs(st, stfp->vertex_programs);
181 }
182 break;
183 default:
184 assert(0); /* problem */
185 }
186
187 /* delete base class */
188 _mesa_delete_program( ctx, prog );
189 }
190
191
192 static GLboolean st_is_program_native( GLcontext *ctx,
193 GLenum target,
194 struct gl_program *prog )
195 {
196 return GL_TRUE;
197 }
198
199
200 static void st_program_string_notify( GLcontext *ctx,
201 GLenum target,
202 struct gl_program *prog )
203 {
204 struct st_context *st = st_context(ctx);
205
206 if (target == GL_FRAGMENT_PROGRAM_ARB) {
207 struct st_fragment_program *stfp = (struct st_fragment_program *) prog;
208
209 stfp->serialNo++;
210
211 if (stfp->driver_shader) {
212 cso_delete_fragment_shader(st->cso_context, stfp->driver_shader);
213 stfp->driver_shader = NULL;
214 }
215
216 if (stfp->state.tokens) {
217 FREE((void *) stfp->state.tokens);
218 stfp->state.tokens = NULL;
219 }
220
221 stfp->param_state = stfp->Base.Base.Parameters->StateFlags;
222
223 if (st->fp == stfp)
224 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
225 }
226 else if (target == GL_VERTEX_PROGRAM_ARB) {
227 struct st_vertex_program *stvp = (struct st_vertex_program *) prog;
228
229 stvp->serialNo++;
230
231 if (stvp->driver_shader) {
232 cso_delete_vertex_shader(st->cso_context, stvp->driver_shader);
233 stvp->driver_shader = NULL;
234 }
235
236 if (stvp->draw_shader) {
237 #if FEATURE_feedback || FEATURE_drawpix
238 /* this would only have been allocated for the RasterPos path */
239 draw_delete_vertex_shader(st->draw, stvp->draw_shader);
240 stvp->draw_shader = NULL;
241 #endif
242 }
243
244 if (stvp->state.tokens) {
245 FREE((void *) stvp->state.tokens);
246 stvp->state.tokens = NULL;
247 }
248
249 stvp->param_state = stvp->Base.Base.Parameters->StateFlags;
250
251 if (st->vp == stvp)
252 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
253 }
254 }
255
256
257
258 void st_init_program_functions(struct dd_function_table *functions)
259 {
260 functions->BindProgram = st_bind_program;
261 functions->UseProgram = st_use_program;
262 functions->NewProgram = st_new_program;
263 functions->DeleteProgram = st_delete_program;
264 functions->IsProgramNative = st_is_program_native;
265 functions->ProgramStringNotify = st_program_string_notify;
266 }