i965: Create and set a new brw_tcs_prog_data::outputs_written field.

When the application hasn't supplied a TCS, and we have to create one,
we need to know what VS outputs to copy to TES inputs.

To do this, we create a new program key field, and set it to the TES
InputsRead bitfield.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
Kenneth Graunke
2015-12-17 21:39:28 -08:00
parent 239a4bdcd4
commit 2432643e89
2 changed files with 14 additions and 6 deletions
+3
View File
@@ -200,6 +200,9 @@ struct brw_tcs_prog_key
unsigned input_vertices;
/** A bitfield of per-vertex outputs written. */
uint64_t outputs_written;
struct brw_sampler_prog_key_data tex;
};
+11 -6
View File
@@ -201,19 +201,24 @@ brw_upload_tcs_prog(struct brw_context *brw)
memset(&key, 0, sizeof(key));
key.program_string_id = tcp->id;
key.input_vertices = ctx->TessCtrlProgram.patch_vertices;
/* _NEW_TEXTURE */
brw_populate_sampler_prog_key_data(ctx, prog, stage_state->sampler_count,
&key.tex);
/* We need to specialize our code generation for tessellation levels
* based on the domain the DS is expecting to tessellate.
*/
key.tes_primitive_mode = tep->program.PrimitiveMode;
if (tcp) {
key.program_string_id = tcp->id;
/* _NEW_TEXTURE */
brw_populate_sampler_prog_key_data(ctx, prog, stage_state->sampler_count,
&key.tex);
} else {
key.outputs_written = tep->program.Base.InputsRead;
}
if (!brw_search_cache(&brw->cache, BRW_CACHE_TCS_PROG,
&key, sizeof(key),
&stage_state->prog_offset, &brw->tcs.prog_data)) {