softpipe: remove unused softpipe_create_fs_variant_exec() parameter

Reviewed-by: Charmaine Lee <charmainel@vmware.com>
This commit is contained in:
Brian Paul 2014-10-30 19:11:54 -06:00
parent 2b9e63823f
commit e3ecb8206a
3 changed files with 3 additions and 5 deletions

View file

@ -33,8 +33,7 @@
struct sp_fragment_shader_variant *
softpipe_create_fs_variant_exec(struct softpipe_context *softpipe,
const struct pipe_shader_state *templ);
softpipe_create_fs_variant_exec(struct softpipe_context *softpipe);
struct tgsi_interp_coef;

View file

@ -189,8 +189,7 @@ exec_delete(struct sp_fragment_shader_variant *var,
struct sp_fragment_shader_variant *
softpipe_create_fs_variant_exec(struct softpipe_context *softpipe,
const struct pipe_shader_state *templ)
softpipe_create_fs_variant_exec(struct softpipe_context *softpipe)
{
struct sp_exec_fragment_shader *shader;

View file

@ -64,7 +64,7 @@ create_fs_variant(struct softpipe_context *softpipe,
#endif
/* codegen, create variant object */
var = softpipe_create_fs_variant_exec(softpipe, curfs);
var = softpipe_create_fs_variant_exec(softpipe);
if (var) {
var->key = *key;