add switch defaults to silence warnings

This commit is contained in:
Brian Paul 2003-10-10 18:11:17 +00:00
parent db40aec48c
commit e6804945b3

View file

@ -726,6 +726,9 @@ _mesa_fetch_state(GLcontext *ctx, const enum state_index state[],
case STATE_LOCAL:
COPY_4V(value, ctx->FragmentProgram.Current->Base.LocalParams[idx]);
break;
default:
_mesa_problem(ctx, "Bad state switch in _mesa_fetch_state()");
return;
}
}
return;
@ -744,6 +747,9 @@ _mesa_fetch_state(GLcontext *ctx, const enum state_index state[],
case STATE_LOCAL:
COPY_4V(value, ctx->VertexProgram.Current->Base.LocalParams[idx]);
break;
default:
_mesa_problem(ctx, "Bad state switch in _mesa_fetch_state()");
return;
}
}
return;