gallium: st_translate_fragment_program() is void now

The return value was never used.
This commit is contained in:
Brian Paul
2008-04-22 14:41:32 -06:00
parent 4ebede8c7f
commit b456f1374f
2 changed files with 2 additions and 5 deletions

View File

@@ -315,7 +315,7 @@ st_translate_vertex_program(struct st_context *st,
* \param tokensOut destination for TGSI tokens * \param tokensOut destination for TGSI tokens
* \return pointer to cached pipe_shader object. * \return pointer to cached pipe_shader object.
*/ */
const struct cso_fragment_shader * void
st_translate_fragment_program(struct st_context *st, st_translate_fragment_program(struct st_context *st,
struct st_fragment_program *stfp, struct st_fragment_program *stfp,
const GLuint inputMapping[]) const GLuint inputMapping[])
@@ -325,7 +325,6 @@ st_translate_fragment_program(struct st_context *st,
GLuint outputMapping[FRAG_RESULT_MAX]; GLuint outputMapping[FRAG_RESULT_MAX];
GLuint defaultInputMapping[FRAG_ATTRIB_MAX]; GLuint defaultInputMapping[FRAG_ATTRIB_MAX];
struct pipe_shader_state fs; struct pipe_shader_state fs;
const struct cso_fragment_shader *cso;
GLuint interpMode[16]; /* XXX size? */ GLuint interpMode[16]; /* XXX size? */
GLuint attr; GLuint attr;
const GLbitfield inputsRead = stfp->Base.Base.InputsRead; const GLbitfield inputsRead = stfp->Base.Base.InputsRead;
@@ -475,7 +474,5 @@ st_translate_fragment_program(struct st_context *st,
if (TGSI_DEBUG) if (TGSI_DEBUG)
tgsi_dump( fs.tokens, 0/*TGSI_DUMP_VERBOSE*/ ); tgsi_dump( fs.tokens, 0/*TGSI_DUMP_VERBOSE*/ );
return cso;
} }

View File

@@ -111,7 +111,7 @@ st_vertex_program( struct gl_vertex_program *vp )
} }
extern const struct cso_fragment_shader * extern void
st_translate_fragment_program(struct st_context *st, st_translate_fragment_program(struct st_context *st,
struct st_fragment_program *fp, struct st_fragment_program *fp,
const GLuint inputMapping[]); const GLuint inputMapping[]);