diff options
author | Rob Clark <[email protected]> | 2016-03-07 00:50:21 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-03-13 12:23:40 -0400 |
commit | 5b955f09f72b2217576ea8980a3d8fd3ba63854a (patch) | |
tree | 1a6cca7a0cbc2bd962c150f8eb512af166ba908a /src/gallium/drivers/freedreno/ir3 | |
parent | d9395e4ed8d0703cdf23e61c62bd14b65eb49a1b (diff) |
freedreno/a4xx: constify the shader variants
Most of the driver just needs read-only access, so constify..
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/ir3')
-rw-r--r-- | src/gallium/drivers/freedreno/ir3/ir3_shader.c | 12 | ||||
-rw-r--r-- | src/gallium/drivers/freedreno/ir3/ir3_shader.h | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/drivers/freedreno/ir3/ir3_shader.c b/src/gallium/drivers/freedreno/ir3/ir3_shader.c index 4d0fcca6b92..c05b52e7a5e 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3_shader.c +++ b/src/gallium/drivers/freedreno/ir3/ir3_shader.c @@ -462,7 +462,7 @@ ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin) #include "freedreno_resource.h" static void -emit_user_consts(struct fd_context *ctx, struct ir3_shader_variant *v, +emit_user_consts(struct fd_context *ctx, const struct ir3_shader_variant *v, struct fd_ringbuffer *ring, struct fd_constbuf_stateobj *constbuf) { const unsigned index = 0; /* user consts are index 0 */ @@ -500,7 +500,7 @@ emit_user_consts(struct fd_context *ctx, struct ir3_shader_variant *v, } static void -emit_ubos(struct fd_context *ctx, struct ir3_shader_variant *v, +emit_ubos(struct fd_context *ctx, const struct ir3_shader_variant *v, struct fd_ringbuffer *ring, struct fd_constbuf_stateobj *constbuf) { uint32_t offset = v->first_driver_param + IR3_UBOS_OFF; @@ -529,7 +529,7 @@ emit_ubos(struct fd_context *ctx, struct ir3_shader_variant *v, } static void -emit_immediates(struct fd_context *ctx, struct ir3_shader_variant *v, +emit_immediates(struct fd_context *ctx, const struct ir3_shader_variant *v, struct fd_ringbuffer *ring) { int size = v->immediates_count; @@ -553,7 +553,7 @@ emit_immediates(struct fd_context *ctx, struct ir3_shader_variant *v, /* emit stream-out buffers: */ static void -emit_tfbos(struct fd_context *ctx, struct ir3_shader_variant *v, +emit_tfbos(struct fd_context *ctx, const struct ir3_shader_variant *v, struct fd_ringbuffer *ring) { /* streamout addresses after driver-params: */ @@ -584,7 +584,7 @@ emit_tfbos(struct fd_context *ctx, struct ir3_shader_variant *v, } static uint32_t -max_tf_vtx(struct fd_context *ctx, struct ir3_shader_variant *v) +max_tf_vtx(struct fd_context *ctx, const struct ir3_shader_variant *v) { struct fd_streamout_stateobj *so = &ctx->streamout; struct pipe_stream_output_info *info = &v->shader->stream_output; @@ -629,7 +629,7 @@ max_tf_vtx(struct fd_context *ctx, struct ir3_shader_variant *v) } void -ir3_emit_consts(struct ir3_shader_variant *v, struct fd_ringbuffer *ring, +ir3_emit_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring, struct fd_context *ctx, const struct pipe_draw_info *info, uint32_t dirty) { if (dirty & (FD_DIRTY_PROG | FD_DIRTY_CONSTBUF)) { diff --git a/src/gallium/drivers/freedreno/ir3/ir3_shader.h b/src/gallium/drivers/freedreno/ir3/ir3_shader.h index c6819b17761..c89dc29ff08 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3_shader.h +++ b/src/gallium/drivers/freedreno/ir3/ir3_shader.h @@ -258,7 +258,7 @@ void ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin); struct fd_ringbuffer; struct fd_context; -void ir3_emit_consts(struct ir3_shader_variant *v, struct fd_ringbuffer *ring, +void ir3_emit_consts(const struct ir3_shader_variant *v, struct fd_ringbuffer *ring, struct fd_context *ctx, const struct pipe_draw_info *info, uint32_t dirty); static inline const char * |