diff options
author | Brian <[email protected]> | 2007-06-21 20:08:10 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-06-21 20:08:10 -0600 |
commit | 493ed9fc11a2bf272a2c1e9e5a072e4f02b46554 (patch) | |
tree | b43acdceb59b9764b3e0f5995b538af987e67ec9 /src/mesa/state_tracker | |
parent | ecfa794037e8be351ecfec0229d1e3b1677ae369 (diff) |
alpha test and misc changes
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_atom_alphatest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_atom_alphatest.c b/src/mesa/state_tracker/st_atom_alphatest.c index b7cc0d70a94..1e2e4497951 100644 --- a/src/mesa/state_tracker/st_atom_alphatest.c +++ b/src/mesa/state_tracker/st_atom_alphatest.c @@ -67,7 +67,7 @@ update_alpha_test( struct st_context *st ) memset(&alpha, 0, sizeof(alpha)); if (st->ctx->Color.AlphaEnabled) { - alpha.enable = 1; + alpha.enabled = 1; alpha.func = gl_alpha_func_to_sp(st->ctx->Color.AlphaFunc); alpha.ref = st->ctx->Color.AlphaRef; } |