mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
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:
parent
db7ffa4006
commit
fa287c99ed
1 changed files with 0 additions and 8 deletions
|
|
@ -271,10 +271,6 @@ setup_vs_variables(isel_context* ctx, nir_shader* nir)
|
||||||
{
|
{
|
||||||
if (ctx->stage == vertex_vs || ctx->stage == vertex_ngg) {
|
if (ctx->stage == vertex_vs || ctx->stage == vertex_ngg) {
|
||||||
setup_vs_output_info(ctx, nir);
|
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) {
|
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) {
|
if (ctx->stage == tess_eval_vs || ctx->stage == tess_eval_ngg) {
|
||||||
setup_vs_output_info(ctx, nir);
|
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) {
|
if (ctx->stage == tess_eval_ngg) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue