util: move variable declaration out of for-loop

To fix MSVC build.
This commit is contained in:
Brian Paul 2013-12-12 11:08:49 -07:00
parent be909274aa
commit ba67d72c64

View file

@ -993,9 +993,11 @@ static void *get_clear_blend_state(struct blitter_context_priv *ctx,
/* Create a new one. */
{
struct pipe_blend_state blend = {0};
unsigned i;
blend.independent_blend_enable = 1;
for (int i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
for i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
if (clear_buffers & (PIPE_CLEAR_COLOR0 << i)) {
blend.rt[i].colormask = PIPE_MASK_RGBA;
}