EXA: fix i965 default color (0,0,0,1.0) -> (0,0,0,0)

(0,0,0,1.0) is actually black...
This commit is contained in:
Wang Zhenyu 2007-02-15 11:03:12 +08:00
parent c010d28f0a
commit d1be0dc4e9
1 changed files with 1 additions and 1 deletions

View File

@ -698,7 +698,7 @@ i965_prepare_composite(int op, PicturePtr pSrcPicture,
default_color_state->color[0] = 0.0; /* R */
default_color_state->color[1] = 0.0; /* G */
default_color_state->color[2] = 0.0; /* B */
default_color_state->color[3] = 1.0; /* A */
default_color_state->color[3] = 0.0; /* A */
src_sampler_state->ss0.default_color_mode = 0; /* GL mode */