mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
softpipe: remove unused softpipe_create_fs_variant_exec() parameter
Reviewed-by: Charmaine Lee <charmainel@vmware.com>
This commit is contained in:
parent
2b9e63823f
commit
e3ecb8206a
3 changed files with 3 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue