summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_curbe.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-03-12 17:14:13 -0600
committerBrian Paul <brianp@vmware.com>2009-03-12 18:25:09 -0600
commitdbc9a1d33b5b047a6497d47cda224df6da200302 (patch)
treefbede3277a0e4efa7b7e2d7af921c620d90ea323 /src/mesa/drivers/dri/i965/brw_curbe.c
parent6b9c1446b35cb33d73bd8ea7aeed8d219d0a9989 (diff)
i965: fix const correctness
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_curbe.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_curbe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_curbe.c b/src/mesa/drivers/dri/i965/brw_curbe.c
index f90f72c7db..545dedd34b 100644
--- a/src/mesa/drivers/dri/i965/brw_curbe.c
+++ b/src/mesa/drivers/dri/i965/brw_curbe.c
@@ -53,7 +53,7 @@ static void calculate_curbe_offsets( struct brw_context *brw )
GLuint nr_fp_regs = (brw->wm.prog_data->nr_params + 15) / 16;
/* BRW_NEW_VERTEX_PROGRAM */
- struct brw_vertex_program *vp = brw_vertex_program(brw->vertex_program);
+ const struct brw_vertex_program *vp = brw_vertex_program_const(brw->vertex_program);
GLuint nr_vp_regs = (vp->program.Base.Parameters->NumParameters * 4 + 15) / 16;
GLuint nr_clip_regs = 0;
GLuint total_regs;