diff options
author | Brian Paul <[email protected]> | 2012-01-17 16:28:10 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-18 10:44:05 -0700 |
commit | a9eda41539bd63ed1835556ad3afc77ee01f6a6a (patch) | |
tree | bd9fdaabb5e7f9b260f2ba55943766c3fb7da222 /src | |
parent | fd890873b20de553078fc96d977fbd858238c7d9 (diff) |
svga: change PIPE_CAPF_MAX_TEXTURE_LOD_BIAS from 16.0 to 15.0
The legal range for the device is apparently [-16.0, +15.0].
Limiting the range to [-15, +15] fixes piglit's lodbias test.
NOTE: This is a candidate for the 8.0 branch.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/svga/svga_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c index 82a3ff2bc2e..7359165621e 100644 --- a/src/gallium/drivers/svga/svga_screen.c +++ b/src/gallium/drivers/svga/svga_screen.c @@ -120,7 +120,7 @@ svga_get_paramf(struct pipe_screen *screen, enum pipe_capf param) return result.u; case PIPE_CAPF_MAX_TEXTURE_LOD_BIAS: - return 16.0; + return 15.0; default: return 0; |