gallium: s/INTERP_NONE/INTERP_LINEAR/ to fix assertion with progs/samples/select.c

This commit is contained in:
Brian 2008-01-23 09:27:39 -07:00
parent 2444f6c6a4
commit b3f081999f

View file

@ -442,7 +442,7 @@ set_feedback_vertex_format(GLcontext *ctx)
assert(ctx->RenderMode == GL_SELECT);
vinfo.num_attribs = 1;
vinfo.format[0] = FORMAT_4F;
vinfo.interp_mode[0] = INTERP_NONE;
vinfo.interp_mode[0] = INTERP_LINEAR;
}
else {
/* GL_FEEDBACK, or glRasterPos */