From e68b4e50536b3438a3bb8c3d12acebc6845461a8 Mon Sep 17 00:00:00 2001 From: Jerome Glisse Date: Thu, 27 May 2010 22:55:18 +0200 Subject: r600g: fix driver + shader compiler backend change Change the way we translate from c_compiler to the asic specific representation. Should make things simpler. Signed-off-by: Jerome Glisse --- src/gallium/drivers/r600/r600_state.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/gallium/drivers/r600/r600_state.c') diff --git a/src/gallium/drivers/r600/r600_state.c b/src/gallium/drivers/r600/r600_state.c index ac986af9f5d..e70ef95c1da 100644 --- a/src/gallium/drivers/r600/r600_state.c +++ b/src/gallium/drivers/r600/r600_state.c @@ -444,8 +444,13 @@ static void r600_set_stencil_ref(struct pipe_context *ctx, rctx->stencil_ref = *sr; } +static void r600_set_sample_mask(struct pipe_context *pipe, unsigned sample_mask) +{ +} + void r600_init_state_functions(struct r600_context *rctx) { + rctx->context.set_sample_mask = r600_set_sample_mask; rctx->context.create_blend_state = r600_create_blend_state; rctx->context.bind_blend_state = r600_bind_blend_state; rctx->context.delete_blend_state = r600_delete_state; -- cgit v1.2.3