diff options
author | Ian Romanick <[email protected]> | 2009-07-29 20:42:28 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-07-29 20:42:28 -0700 |
commit | cbe4133109c95fa6b90d8a601c78f043db456809 (patch) | |
tree | 36f8fc1b20adfc6c95b20c58f019690e3b0fb952 /src/mesa/shader/program_lexer.l | |
parent | 333bb4f291b224ed82d87ade7ac157fb93fc5d12 (diff) |
ARB prog lexer: attenuation is not just for vp
Diffstat (limited to 'src/mesa/shader/program_lexer.l')
-rw-r--r-- | src/mesa/shader/program_lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/program_lexer.l b/src/mesa/shader/program_lexer.l index e1069ab4d7f..05978311ec6 100644 --- a/src/mesa/shader/program_lexer.l +++ b/src/mesa/shader/program_lexer.l @@ -236,7 +236,7 @@ state { return STATE; } result { return RESULT; } {dot}ambient { return AMBIENT; } -{dot}attenuation { return_token_or_DOT(require_ARB_vp, ATTENUATION); } +{dot}attenuation { return ATTENUATION; } {dot}back { return BACK; } {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); } {dot}color { return COLOR; } |