diff options
author | Brian <[email protected]> | 2007-02-06 21:33:29 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-06 21:33:29 -0700 |
commit | 5f7d4668c4b7de1c0d2269809d30aef6d0a089e9 (patch) | |
tree | 755ca17c1fcea293329702bb3034d78f516b7aa3 /src/mesa/shader/slang/slang_ir.h | |
parent | 7e73bc32f565b3d07e9a5cfbe0736d1d6bd6a2c1 (diff) |
replace IR_BEGIN_LOOP/IR_END_LOOP with IR_LOOP
Diffstat (limited to 'src/mesa/shader/slang/slang_ir.h')
-rw-r--r-- | src/mesa/shader/slang/slang_ir.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/shader/slang/slang_ir.h b/src/mesa/shader/slang/slang_ir.h index 0f2ceb03c07..a7c858c69f7 100644 --- a/src/mesa/shader/slang/slang_ir.h +++ b/src/mesa/shader/slang/slang_ir.h @@ -60,8 +60,7 @@ typedef enum IR_RETURN, /* return from subroutine */ IR_CALL, /* call subroutine */ - IR_BEGIN_LOOP,/* begin loop */ - IR_END_LOOP, /* end loop */ + IR_LOOP, /* high-level loop-begin / loop-end */ IR_CONT, /* continue loop */ IR_BREAK, /* break loop */ |