diff options
author | Corbin Simpson <[email protected]> | 2009-02-02 16:13:41 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-02 16:13:41 -0800 |
commit | fa3c59136e9dd788ee7d3689b6cb89dd27040a9e (patch) | |
tree | 277bd446c6a6cd38d1ab43f2611a566f1fc06bb2 /src/gallium/drivers/r300/r300_screen.c | |
parent | 33d798c4eab57293336082c7d011aa27af693bbb (diff) |
r300: Take care of some XXXes.
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 99dcf38f431..8e77e0ddd97 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -81,12 +81,11 @@ static int r300_get_param(struct pipe_screen* pscreen, int param) /* IN THEORY */ return 0; case PIPE_CAP_TWO_SIDED_STENCIL: - /* IN THEORY */ - /* if (r300screen->is_r500) { - * return 1; - * } else { - * return 0; - * } */ + if (r300screen->is_r500) { + return 1; + } else { + return 0; + } return 0; case PIPE_CAP_GLSL: /* IN THEORY */ |