st/mesa: remove unused-but-set variables in st_program.c
This commit is contained in:
@@ -449,7 +449,6 @@ st_translate_fragment_program(struct st_context *st,
|
||||
GLuint inputMapping[FRAG_ATTRIB_MAX];
|
||||
GLuint interpMode[PIPE_MAX_SHADER_INPUTS]; /* XXX size? */
|
||||
GLuint attr;
|
||||
enum pipe_error error;
|
||||
const GLbitfield inputsRead = stfp->Base.Base.InputsRead;
|
||||
struct ureg_program *ureg;
|
||||
GLboolean write_all = GL_FALSE;
|
||||
@@ -606,7 +605,7 @@ st_translate_fragment_program(struct st_context *st,
|
||||
if (write_all == GL_TRUE)
|
||||
ureg_property_fs_color0_writes_all_cbufs(ureg, 1);
|
||||
|
||||
error = st_translate_mesa_program(st->ctx,
|
||||
st_translate_mesa_program(st->ctx,
|
||||
TGSI_PROCESSOR_FRAGMENT,
|
||||
ureg,
|
||||
&stfp->Base.Base,
|
||||
@@ -687,7 +686,6 @@ st_translate_geometry_program(struct st_context *st,
|
||||
GLuint inputMapping[GEOM_ATTRIB_MAX];
|
||||
GLuint outputMapping[GEOM_RESULT_MAX];
|
||||
struct pipe_context *pipe = st->pipe;
|
||||
enum pipe_error error;
|
||||
GLuint attr;
|
||||
const GLbitfield inputsRead = stgp->Base.Base.InputsRead;
|
||||
GLuint vslot = 0;
|
||||
@@ -894,7 +892,7 @@ st_translate_geometry_program(struct st_context *st,
|
||||
ureg_property_gs_output_prim(ureg, stgp->Base.OutputType);
|
||||
ureg_property_gs_max_vertices(ureg, stgp->Base.VerticesOut);
|
||||
|
||||
error = st_translate_mesa_program(st->ctx,
|
||||
st_translate_mesa_program(st->ctx,
|
||||
TGSI_PROCESSOR_GEOMETRY,
|
||||
ureg,
|
||||
&stgp->Base.Base,
|
||||
|
Reference in New Issue
Block a user