diff options
author | Eric Anholt <[email protected]> | 2016-05-02 13:35:21 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2016-07-12 17:42:42 -0700 |
commit | 420845acb2207cb9d903e67b66deaf08637ac3b2 (patch) | |
tree | 318be1b4821563c6adf5718fac1979f02c56d147 /src/gallium/drivers/vc4/vc4_qir.h | |
parent | 0adf2ec0eefa70905fb9ca45c1681149c0688ce9 (diff) |
vc4: Add support for NIR loops and break/continue.
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_qir.h')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_qir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_qir.h b/src/gallium/drivers/vc4/vc4_qir.h index e284ed58b65..fe85b769775 100644 --- a/src/gallium/drivers/vc4/vc4_qir.h +++ b/src/gallium/drivers/vc4/vc4_qir.h @@ -463,6 +463,8 @@ struct vc4_compile { struct list_head blocks; int next_block_index; struct qblock *cur_block; + struct qblock *loop_cont_block; + struct qblock *loop_break_block; struct list_head qpu_inst_list; uint64_t *qpu_insts; |