mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 18:58:10 +02:00
gallium: nr_attrs was off by one, updated comments, minor code movement
This commit is contained in:
parent
39b9b05313
commit
8fb4d602db
1 changed files with 4 additions and 2 deletions
|
|
@ -1266,12 +1266,14 @@ void setup_prepare( struct setup_context *setup )
|
|||
sp->framebuffer.zsbuf->status = PIPE_SURFACE_STATUS_DEFINED;
|
||||
}
|
||||
|
||||
/* Note: nr_attrs is only used for debugging (vertex printing) */
|
||||
{
|
||||
const struct sp_fragment_shader *fs = setup->softpipe->fs;
|
||||
setup->quad.nr_attrs = fs->info.num_inputs;
|
||||
sp->quad.first->begin(sp->quad.first);
|
||||
setup->quad.nr_attrs = fs->info.num_inputs + 1; /* +1 for vert pos */
|
||||
}
|
||||
|
||||
sp->quad.first->begin(sp->quad.first);
|
||||
|
||||
if (sp->reduced_api_prim == PIPE_PRIM_TRIANGLES &&
|
||||
sp->rasterizer->fill_cw == PIPE_POLYGON_MODE_FILL &&
|
||||
sp->rasterizer->fill_ccw == PIPE_POLYGON_MODE_FILL) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue