diff options
author | Timothy Arceri <[email protected]> | 2018-01-19 09:09:29 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-01-23 09:18:37 +1100 |
commit | 3bc5fa69f5c8061ba9eaf30972eb21ace6593dc9 (patch) | |
tree | 197dbd4eea67b759cae5413e75faef3e195789ac /src/gallium/drivers | |
parent | dd4591b79481ac98967af1f93e9e4b52197e6dc7 (diff) |
ac/radeonsi: add emit primitive to the abi
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index f29bd61c9cd..4717366d07b 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -6030,6 +6030,7 @@ static bool si_compile_tgsi_main(struct si_shader_context *ctx, bld_base->emit_fetch_funcs[TGSI_FILE_INPUT] = fetch_input_gs; ctx->abi.load_inputs = si_nir_load_input_gs; ctx->abi.emit_vertex = si_llvm_emit_vertex; + ctx->abi.emit_primitive = si_llvm_emit_primitive; ctx->abi.emit_outputs = si_llvm_emit_gs_epilogue; bld_base->emit_epilogue = si_tgsi_emit_gs_epilogue; break; |