diff options
author | Eric Anholt <[email protected]> | 2010-12-01 14:02:14 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-12-01 16:14:34 -0800 |
commit | 843a6a308e05bd4bf2056e08ec65ac4770097b93 (patch) | |
tree | 9bc85f5a8651a59dd709bf8404cc9d55ee408e8f /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | 00e5a743e2ee3981a34b95067a97fa73c0f5d779 (diff) |
i965: Add support for gen6 CONTINUE instruction emit.
At this point, piglit tests for fragment shader loops are working.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index df5ce56ba61..a4904b7098a 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -954,6 +954,8 @@ struct brw_instruction *brw_WHILE(struct brw_compile *p, struct brw_instruction *patch_insn); struct brw_instruction *brw_BREAK(struct brw_compile *p, int pop_count); +struct brw_instruction *brw_CONT_gen6(struct brw_compile *p, + struct brw_instruction *do_insn); struct brw_instruction *brw_CONT(struct brw_compile *p, int pop_count); /* Forward jumps: */ |