aco: remove invalid assertions for NGG streamout
Streamout outputs are directly emitted from NIR now. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19317>
This commit is contained in:

committed by
Marge Bot

parent
db7ffa4006
commit
fa287c99ed
@@ -271,10 +271,6 @@ setup_vs_variables(isel_context* ctx, nir_shader* nir)
|
||||
{
|
||||
if (ctx->stage == vertex_vs || ctx->stage == vertex_ngg) {
|
||||
setup_vs_output_info(ctx, nir);
|
||||
|
||||
/* TODO: NGG streamout */
|
||||
if (ctx->stage.hw == HWStage::NGG)
|
||||
assert(!ctx->program->info.so.num_outputs);
|
||||
}
|
||||
|
||||
if (ctx->stage == vertex_ngg) {
|
||||
@@ -312,10 +308,6 @@ setup_tes_variables(isel_context* ctx, nir_shader* nir)
|
||||
{
|
||||
if (ctx->stage == tess_eval_vs || ctx->stage == tess_eval_ngg) {
|
||||
setup_vs_output_info(ctx, nir);
|
||||
|
||||
/* TODO: NGG streamout */
|
||||
if (ctx->stage.hw == HWStage::NGG)
|
||||
assert(!ctx->program->info.so.num_outputs);
|
||||
}
|
||||
|
||||
if (ctx->stage == tess_eval_ngg) {
|
||||
|
Reference in New Issue
Block a user