r600: make two compute functions static.
These aren't used outside evergreen_compute.c Acked-by: Tom Stellard <thomas.stellard@amd.com> Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user