diff options
author | Ian Romanick <[email protected]> | 2009-07-27 15:47:52 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-07-27 15:47:52 -0700 |
commit | 88018e2e073909ae807f16707f2701e068900926 (patch) | |
tree | c693fba04321b7f6ab19e81673d3819996889ad6 /src/mesa/shader/program_parser.h | |
parent | 4821099429ec059dc00a28f448bc3c537296ab55 (diff) |
ARB prog parser: Fix handling of RECT
Require that GL_{ARB,EXT,NV}_texture_rectangle be supported before
allowing use of RECT texture target.
Diffstat (limited to 'src/mesa/shader/program_parser.h')
-rw-r--r-- | src/mesa/shader/program_parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/program_parser.h b/src/mesa/shader/program_parser.h index e17ffd23223..b9731439a09 100644 --- a/src/mesa/shader/program_parser.h +++ b/src/mesa/shader/program_parser.h @@ -200,6 +200,7 @@ struct asm_parser_state { unsigned PrecisionHint:2; unsigned DrawBuffers:1; unsigned Shadow:1; + unsigned TexRect:1; } option; struct { |