diff options
author | Brian <[email protected]> | 2007-07-24 12:27:38 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-24 12:27:38 -0600 |
commit | 43d7c1fe9d2544b851afa2f1c1e245a63860e670 (patch) | |
tree | f5580653e90f21ec86f721e4a1753e19d675adbb /src/mesa/state_tracker/st_program.h | |
parent | ef3849ffa0af7f2aad8a69a7d04a4dd780fa247b (diff) |
Basic fragment programs run now.
Handling of constants might change. For now, the st_fragment_program struct
contains a pipe_constant_buffer (not a pointer).
Diffstat (limited to 'src/mesa/state_tracker/st_program.h')
-rw-r--r-- | src/mesa/state_tracker/st_program.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_program.h b/src/mesa/state_tracker/st_program.h index b28887946d5..f6d5f6d76ce 100644 --- a/src/mesa/state_tracker/st_program.h +++ b/src/mesa/state_tracker/st_program.h @@ -53,6 +53,7 @@ struct st_fragment_program struct tgsi_token tokens[ST_FP_MAX_TOKENS]; GLboolean dirty; + struct pipe_constant_buffer constants; #if 0 GLfloat (*cbuffer)[4]; |