diff options
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nv30/nv30_state.c | 3 | ||||
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_state.c | 3 | ||||
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_state.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/gallium/drivers/nouveau/nv30/nv30_state.c b/src/gallium/drivers/nouveau/nv30/nv30_state.c index c6eddd0486c..16b668bfe48 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_state.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_state.c @@ -326,7 +326,8 @@ nv30_set_sample_mask(struct pipe_context *pipe, unsigned sample_mask) } static void -nv30_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index, +nv30_set_constant_buffer(struct pipe_context *pipe, + enum pipe_shader_type shader, uint index, const struct pipe_constant_buffer *cb) { struct nv30_context *nv30 = nv30_context(pipe); diff --git a/src/gallium/drivers/nouveau/nv50/nv50_state.c b/src/gallium/drivers/nouveau/nv50/nv50_state.c index 99d70d129c2..6fa3d2cdc3c 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_state.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_state.c @@ -859,7 +859,8 @@ nv50_cp_state_bind(struct pipe_context *pipe, void *hwcso) } static void -nv50_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index, +nv50_set_constant_buffer(struct pipe_context *pipe, + enum pipe_shader_type shader, uint index, const struct pipe_constant_buffer *cb) { struct nv50_context *nv50 = nv50_context(pipe); diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_state.c b/src/gallium/drivers/nouveau/nvc0/nvc0_state.c index bba35f1e9b3..32233a51ff2 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_state.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_state.c @@ -712,7 +712,8 @@ nvc0_cp_state_bind(struct pipe_context *pipe, void *hwcso) } static void -nvc0_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index, +nvc0_set_constant_buffer(struct pipe_context *pipe, + enum pipe_shader_type shader, uint index, const struct pipe_constant_buffer *cb) { struct nvc0_context *nvc0 = nvc0_context(pipe); |