From: Jason Ekstrand Date: Fri, 27 Oct 2017 01:11:25 +0000 (-0700) Subject: anv/pipeline: Add populate_tcs/tes_key helpers X-Git-Tag: android-x86-8.1-r1~1747 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=de9e5cf35a1fd0c66288e49c30dc100ad3e1d3aa;p=android-x86%2Fexternal-mesa.git anv/pipeline: Add populate_tcs/tes_key helpers They don't really do anything interesting, but it's more consistent this way. Reviewed-by: Timothy Arceri --- diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index f0c694c5621..07706025527 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -308,6 +308,27 @@ populate_vs_prog_key(const struct gen_device_info *devinfo, } static void +populate_tcs_prog_key(const struct gen_device_info *devinfo, + unsigned input_vertices, + struct brw_tcs_prog_key *key) +{ + memset(key, 0, sizeof(*key)); + + populate_sampler_prog_key(devinfo, &key->tex); + + key->input_vertices = input_vertices; +} + +static void +populate_tes_prog_key(const struct gen_device_info *devinfo, + struct brw_tes_prog_key *key) +{ + memset(key, 0, sizeof(*key)); + + populate_sampler_prog_key(devinfo, &key->tex); +} + +static void populate_gs_prog_key(const struct gen_device_info *devinfo, struct brw_gs_prog_key *key) { @@ -629,9 +650,10 @@ anv_pipeline_compile_tcs_tes(struct anv_pipeline *pipeline, struct anv_shader_bin *tcs_bin = NULL; struct anv_shader_bin *tes_bin = NULL; - populate_sampler_prog_key(&pipeline->device->info, &tcs_key.tex); - populate_sampler_prog_key(&pipeline->device->info, &tes_key.tex); - tcs_key.input_vertices = info->pTessellationState->patchControlPoints; + populate_tcs_prog_key(&pipeline->device->info, + info->pTessellationState->patchControlPoints, + &tcs_key); + populate_tes_prog_key(&pipeline->device->info, &tes_key); ANV_FROM_HANDLE(anv_pipeline_layout, layout, info->layout);