diff options
author | Eric Anholt <[email protected]> | 2011-03-09 09:31:09 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-03-11 12:55:13 -0800 |
commit | 5ae1d195061b5f01d85b8f6d48d89d7995b07f4f (patch) | |
tree | 7da70f3e5b14c4b6878a947c752a463bdad64cd6 /src/mesa | |
parent | 7e02303497237cde958c28608477d0c355a8038b (diff) |
i965: Use ffs() on a 32-bit int value instad of ffsll().
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_draw_upload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c index e96c32a93a6..f1d00693168 100644 --- a/src/mesa/drivers/dri/i965/brw_draw_upload.c +++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c @@ -291,7 +291,7 @@ static void brw_prepare_vertices(struct brw_context *brw) /* Accumulate the list of enabled arrays. */ brw->vb.nr_enabled = 0; while (vs_inputs) { - GLuint i = _mesa_ffsll(vs_inputs) - 1; + GLuint i = ffs(vs_inputs) - 1; struct brw_vertex_element *input = &brw->vb.inputs[i]; vs_inputs &= ~(1 << i); |