diff options
author | Joakim Sindholt <[email protected]> | 2009-02-03 02:58:51 +0100 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-02 18:24:55 -0800 |
commit | e1b04da9b35aad1f474f7396f206a7c124c6859b (patch) | |
tree | 406d09e192832562c293d2b0840977efed62db13 /src/gallium/drivers/r300/r300_screen.c | |
parent | 3aabfa46083daf60859bb26b65568de4cf40915f (diff) |
r300: fix compiler/linker errors
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 8e77e0ddd97..fd916fadbe6 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -81,7 +81,7 @@ static int r300_get_param(struct pipe_screen* pscreen, int param) /* IN THEORY */ return 0; case PIPE_CAP_TWO_SIDED_STENCIL: - if (r300screen->is_r500) { + if (r300screen->caps->is_r500) { return 1; } else { return 0; |