~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/drivers/vc4/vc4_qir_schedule.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
enum direction { F, R };
74
74
 
75
75
/**
76
 
 * Marks a dependency between two intructions, that \p after must appear after
 
76
 * Marks a dependency between two instructions, that \p after must appear after
77
77
 * \p before.
78
78
 *
79
79
 * Our dependencies are tracked as a DAG.  Since we're scheduling bottom-up,