gallium: st_translate_fragment_program() is void now
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 22 Apr 2008 20:41:32 +0000 (14:41 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 22 Apr 2008 20:44:07 +0000 (14:44 -0600)
The return value was never used.

src/mesa/state_tracker/st_program.c
src/mesa/state_tracker/st_program.h

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