Mesa (master): r600: make two compute functions static.

Dave Airlie airlied at kemper.freedesktop.org
Thu Apr 7 03:45:14 UTC 2016


Module: Mesa
Branch: master
Commit: a5d247dda0d0dfcae5c1e2b730cb7e53e5315676
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a5d247dda0d0dfcae5c1e2b730cb7e53e5315676

Author: Dave Airlie <airlied at redhat.com>
Date:   Wed Apr  6 22:35:12 2016 +0100

r600: make two compute functions static.

These aren't used outside evergreen_compute.c

Acked-by: Tom Stellard <thomas.stellard at amd.com>
Reviewed-by: Edward O'Callaghan <eocallaghan at alterapraxis.com>
Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/gallium/drivers/r600/evergreen_compute.c | 6 +++---
 src/gallium/drivers/r600/evergreen_compute.h | 2 --
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/gallium/drivers/r600/evergreen_compute.c b/src/gallium/drivers/r600/evergreen_compute.c
index 6cd49c9..b93ec99 100644
--- a/src/gallium/drivers/r600/evergreen_compute.c
+++ b/src/gallium/drivers/r600/evergreen_compute.c
@@ -251,8 +251,8 @@ static void r600_destroy_shader(struct r600_bytecode *bc)
 	FREE(bc->bytecode);
 }
 
-void *evergreen_create_compute_state(struct pipe_context *ctx,
-				     const const struct pipe_compute_state *cso)
+static void *evergreen_create_compute_state(struct pipe_context *ctx,
+					    const const struct pipe_compute_state *cso)
 {
 	struct r600_context *rctx = (struct r600_context *)ctx;
 	struct r600_pipe_compute *shader = CALLOC_STRUCT(r600_pipe_compute);
@@ -284,7 +284,7 @@ void *evergreen_create_compute_state(struct pipe_context *ctx,
 	return shader;
 }
 
-void evergreen_delete_compute_state(struct pipe_context *ctx, void *state)
+static void evergreen_delete_compute_state(struct pipe_context *ctx, void *state)
 {
 	struct r600_context *rctx = (struct r600_context *)ctx;
 	struct r600_pipe_compute *shader = state;
diff --git a/src/gallium/drivers/r600/evergreen_compute.h b/src/gallium/drivers/r600/evergreen_compute.h
index f1f608c..59e3946 100644
--- a/src/gallium/drivers/r600/evergreen_compute.h
+++ b/src/gallium/drivers/r600/evergreen_compute.h
@@ -38,8 +38,6 @@ struct r600_resource_global {
 	struct compute_memory_item *chunk;
 };
 
-void *evergreen_create_compute_state(struct pipe_context *ctx, const struct pipe_compute_state *cso);
-void evergreen_delete_compute_state(struct pipe_context *ctx, void *state);
 void evergreen_init_atom_start_compute_cs(struct r600_context *rctx);
 void evergreen_init_compute_state_functions(struct r600_context *rctx);
 void evergreen_emit_cs_shader(struct r600_context *rctx, struct r600_atom * atom);




More information about the mesa-commit mailing list