diff options
author | Caio Marcelo de Oliveira Filho <[email protected]> | 2019-03-29 11:55:08 -0700 |
---|---|---|
committer | Caio Marcelo de Oliveira Filho <[email protected]> | 2019-03-29 12:07:26 -0700 |
commit | 3b20ca34aeb9250b937166c7a499bd56d4c16289 (patch) | |
tree | 85363c91765b2ea73cba9e902da6981c3b833f79 /src | |
parent | 8d9c2044a4f27b71ad854881771128bfcb2a6955 (diff) |
iris: Clean up compiler warnings about unused
Removed a few unused variables and iris_getparam_boolean().
Kept 'name' around since there's a commented debug that make use of it.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/iris/iris_resolve.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/iris/iris_screen.c | 10 |
2 files changed, 1 insertions, 11 deletions
diff --git a/src/gallium/drivers/iris/iris_resolve.c b/src/gallium/drivers/iris/iris_resolve.c index 7b8db1a1955..cff40513073 100644 --- a/src/gallium/drivers/iris/iris_resolve.c +++ b/src/gallium/drivers/iris/iris_resolve.c @@ -565,7 +565,7 @@ iris_hiz_exec(struct iris_context *ice, { assert(iris_resource_level_has_hiz(res, level)); assert(op != ISL_AUX_OP_NONE); - const char *name = NULL; + UNUSED const char *name = NULL; switch (op) { case ISL_AUX_OP_FULL_RESOLVE: diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index 0d908a00e1f..b2ca0074682 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -307,8 +307,6 @@ iris_get_shader_param(struct pipe_screen *pscreen, enum pipe_shader_type p_stage, enum pipe_shader_cap param) { - struct iris_screen *screen = (struct iris_screen *)pscreen; - struct brw_compiler *compiler = screen->compiler; gl_shader_stage stage = stage_from_pipe(p_stage); /* this is probably not totally correct.. but it's a start: */ @@ -388,7 +386,6 @@ iris_get_compute_param(struct pipe_screen *pscreen, void *ret) { struct iris_screen *screen = (struct iris_screen *)pscreen; - struct brw_compiler *compiler = screen->compiler; const struct gen_device_info *devinfo = &screen->devinfo; const unsigned max_threads = MIN2(64, devinfo->max_cs_threads); @@ -502,13 +499,6 @@ iris_getparam(struct iris_screen *screen, int param, int *value) return 0; } -static bool -iris_getparam_boolean(struct iris_screen *screen, int param) -{ - int value = 0; - return (iris_getparam(screen, param, &value) == 0) && value; -} - static int iris_getparam_integer(struct iris_screen *screen, int param) { |