diff options
author | Brian Paul <[email protected]> | 2008-05-18 15:50:20 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-18 15:50:20 -0600 |
commit | 2f8fc325aca43693aac368ae5781547cc976d387 (patch) | |
tree | 26c6e278ff412557dbfdf7005e13b4b948532c39 /src/mesa/shader/prog_statevars.h | |
parent | 0c78c766e4cb8ffcda44cabfadb8de8e09121034 (diff) |
mesa: added internal post color matrix scale/bias vars
cherry-picked from gallium-0.1 (302daeb2ec62c59bd28d0c53cdc0fb07dc9d0f58)
Diffstat (limited to 'src/mesa/shader/prog_statevars.h')
-rw-r--r-- | src/mesa/shader/prog_statevars.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/shader/prog_statevars.h b/src/mesa/shader/prog_statevars.h index 22bb8e07ad1..53529ab2437 100644 --- a/src/mesa/shader/prog_statevars.h +++ b/src/mesa/shader/prog_statevars.h @@ -108,6 +108,10 @@ typedef enum gl_state_index_ { STATE_POSITION_NORMALIZED, /* normalized light position */ STATE_FOG_PARAMS_OPTIMIZED, /* for faster fog calc */ STATE_SPOT_DIR_NORMALIZED, /* pre-normalized spot dir */ + STATE_PT_SCALE, /**< Pixel transfer RGBA scale */ + STATE_PT_BIAS, /**< Pixel transfer RGBA bias */ + STATE_PCM_SCALE, /**< Post color matrix RGBA scale */ + STATE_PCM_BIAS, /**< Post color matrix RGBA bias */ STATE_INTERNAL_DRIVER /* first available state index for drivers (must be last) */ } gl_state_index; |