glsl: Silence several "warning: unused parameter"
This commit is contained in:
@@ -3014,6 +3014,12 @@ ast_function::hir(exec_list *instructions,
|
|||||||
|
|
||||||
const char *const name = identifier;
|
const char *const name = identifier;
|
||||||
|
|
||||||
|
/* New functions are always added to the top-level IR instruction stream,
|
||||||
|
* so this instruction list pointer is ignored. See also emit_function
|
||||||
|
* (called below).
|
||||||
|
*/
|
||||||
|
(void) instructions;
|
||||||
|
|
||||||
/* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
|
/* From page 21 (page 27 of the PDF) of the GLSL 1.20 spec,
|
||||||
*
|
*
|
||||||
* "Function declarations (prototypes) cannot occur inside of functions;
|
* "Function declarations (prototypes) cannot occur inside of functions;
|
||||||
|
@@ -35,4 +35,5 @@ _mesa_glsl_release_functions(void)
|
|||||||
void
|
void
|
||||||
_mesa_glsl_initialize_functions(_mesa_glsl_parse_state *state)
|
_mesa_glsl_initialize_functions(_mesa_glsl_parse_state *state)
|
||||||
{
|
{
|
||||||
|
(void) state;
|
||||||
}
|
}
|
||||||
|
@@ -34,6 +34,7 @@ void
|
|||||||
_mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
|
_mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
|
||||||
struct gl_shader *sh)
|
struct gl_shader *sh)
|
||||||
{
|
{
|
||||||
|
(void) ctx;
|
||||||
*ptr = sh;
|
*ptr = sh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -289,6 +289,8 @@ emit_errors_unlinked(const void *key, void *data, void *closure)
|
|||||||
function *f = (function *) data;
|
function *f = (function *) data;
|
||||||
YYLTYPE loc;
|
YYLTYPE loc;
|
||||||
|
|
||||||
|
(void) key;
|
||||||
|
|
||||||
char *proto = prototype_string(f->sig->return_type,
|
char *proto = prototype_string(f->sig->return_type,
|
||||||
f->sig->function_name(),
|
f->sig->function_name(),
|
||||||
&f->sig->parameters);
|
&f->sig->parameters);
|
||||||
@@ -308,6 +310,8 @@ emit_errors_linked(const void *key, void *data, void *closure)
|
|||||||
(struct gl_shader_program *) closure;
|
(struct gl_shader_program *) closure;
|
||||||
function *f = (function *) data;
|
function *f = (function *) data;
|
||||||
|
|
||||||
|
(void) key;
|
||||||
|
|
||||||
char *proto = prototype_string(f->sig->return_type,
|
char *proto = prototype_string(f->sig->return_type,
|
||||||
f->sig->function_name(),
|
f->sig->function_name(),
|
||||||
&f->sig->parameters);
|
&f->sig->parameters);
|
||||||
|
@@ -438,6 +438,7 @@ struct ir_lower_jumps_visitor : public ir_control_flow_visitor {
|
|||||||
* satisfied, because discard statements can't contain other
|
* satisfied, because discard statements can't contain other
|
||||||
* statements.
|
* statements.
|
||||||
*/
|
*/
|
||||||
|
(void) ir;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum jump_strength get_jump_strength(ir_instruction* ir)
|
enum jump_strength get_jump_strength(ir_instruction* ir)
|
||||||
|
@@ -138,6 +138,7 @@ is_only_instruction(ir_discard *discard)
|
|||||||
ir_visitor_status
|
ir_visitor_status
|
||||||
discard_simplifier::visit_enter(ir_assignment *ir)
|
discard_simplifier::visit_enter(ir_assignment *ir)
|
||||||
{
|
{
|
||||||
|
(void) ir;
|
||||||
return visit_continue_with_parent;
|
return visit_continue_with_parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -49,6 +49,7 @@ public:
|
|||||||
ir_visitor_status
|
ir_visitor_status
|
||||||
ir_if_simplification_visitor::visit_enter(ir_assignment *ir)
|
ir_if_simplification_visitor::visit_enter(ir_assignment *ir)
|
||||||
{
|
{
|
||||||
|
(void) ir;
|
||||||
return visit_continue_with_parent;
|
return visit_continue_with_parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -37,6 +37,7 @@ void
|
|||||||
_mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
|
_mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
|
||||||
struct gl_shader *sh)
|
struct gl_shader *sh)
|
||||||
{
|
{
|
||||||
|
(void) ctx;
|
||||||
*ptr = sh;
|
*ptr = sh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user