mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
gallium: s/INTERP_NONE/INTERP_LINEAR/ to fix assertion with progs/samples/select.c
This commit is contained in:
parent
2444f6c6a4
commit
b3f081999f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue