diff options
author | Marek Olšák <[email protected]> | 2010-05-16 00:21:53 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-16 00:21:53 +0200 |
commit | 87547ac70ce0f8696d16336177003f881c9ee836 (patch) | |
tree | d1e18803ba504f1371e612a0fe2efd205dbfc162 /src/gallium/drivers/r300/r300_context.h | |
parent | 6a0ec833e4431445fe35230c0ab1d7dfdb997c64 (diff) |
r300g/swtcl: fix point sprite texgen (do it in HW)
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 69c09560e7e..e44906d0099 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -90,8 +90,10 @@ struct r300_dsa_state { }; struct r300_rs_state { - /* Draw-specific rasterizer state */ + /* Original rasterizer state. */ struct pipe_rasterizer_state rs; + /* Draw-specific rasterizer state. */ + struct pipe_rasterizer_state rs_draw; uint32_t vap_control_status; /* R300_VAP_CNTL_STATUS: 0x2140 */ uint32_t antialiasing_config; /* R300_GB_AA_CONFIG: 0x4020 */ |