diff options
author | Corbin Simpson <[email protected]> | 2009-01-27 04:04:57 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:30 -0800 |
commit | bea0c5812bd2795b514725d2a3788add3dc209af (patch) | |
tree | 8f48b5dcc6ec0832f3f4119f24f3093cdb1423c3 /src/gallium/drivers/r300/r300_surface.h | |
parent | 2cb90c8e805d010ba4594264dd9edbbb7f95513a (diff) |
r300: Add blend color state emit.
Slow and steady wins the race. Or something like that.
Diffstat (limited to 'src/gallium/drivers/r300/r300_surface.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_surface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_surface.h b/src/gallium/drivers/r300/r300_surface.h index 6d71601b98c..8ec7151f4d2 100644 --- a/src/gallium/drivers/r300/r300_surface.h +++ b/src/gallium/drivers/r300/r300_surface.h @@ -39,4 +39,10 @@ const struct r300_blend_state blend_clear_state = { .dither = 0x0, }; +const struct r300_blend_color_state blend_color_clear_state = { + .blend_color = 0x0, + .blend_color_red_alpha = 0x0, + .blend_color_green_blue = 0x0, +}; + #endif /* R300_SURFACE_H */ |