diff options
author | Jason Ekstrand <[email protected]> | 2018-09-14 15:10:28 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-01-22 10:42:57 -0600 |
commit | ac0f8a6ea050fcb00b26a64cf717a7329ae23337 (patch) | |
tree | 2c8bae71aa86b177730bfc9cfbf9e632b7073736 /src/intel/vulkan/genX_pipeline.c | |
parent | 7f4d9bb7b8da540abd1216c295d4a34b51dea7f2 (diff) |
anv: Implement transform feedback queries
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/genX_pipeline.c')
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index 899a96fd84f..d2142ae42c2 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -1150,6 +1150,7 @@ emit_3dstate_streamout(struct anv_pipeline *pipeline, #if GEN_GEN >= 8 if (xfb_info) { so.SOFunctionEnable = true; + so.SOStatisticsEnable = true; const VkPipelineRasterizationStateStreamCreateInfoEXT *stream_info = vk_find_struct_const(rs_info, PIPELINE_RASTERIZATION_STATE_STREAM_CREATE_INFO_EXT); |