diff options
author | Brian <[email protected]> | 2007-08-16 13:33:43 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-16 13:33:43 -0600 |
commit | de653b4c9bddcec46f3ddf411ec082dd178d7b38 (patch) | |
tree | c46350dc671e6bfc32c7a0f3df45b4d0d82c6661 /src/mesa/state_tracker/st_program.h | |
parent | ebe510766927315ec6dcd846a980cb851b5331d4 (diff) |
Begin added vertex shader state/support.
Renamed pipe_fs_state to pipe_shader_state since it can be used for both
vertex and fragment shader info.
Diffstat (limited to 'src/mesa/state_tracker/st_program.h')
-rw-r--r-- | src/mesa/state_tracker/st_program.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_program.h b/src/mesa/state_tracker/st_program.h index 8dcb2ceb487..b077fdf0698 100644 --- a/src/mesa/state_tracker/st_program.h +++ b/src/mesa/state_tracker/st_program.h @@ -83,7 +83,9 @@ struct st_vertex_program * ProgramStringNotify changes. */ + struct tgsi_token tokens[ST_FP_MAX_TOKENS]; GLboolean dirty; + struct pipe_constant_buffer constants; GLuint param_state; }; |