diff options
author | Brian <[email protected]> | 2009-01-03 14:44:34 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2009-01-03 14:44:34 -0700 |
commit | 9832f928503d59d2244d832a28fb7195d8d6bfec (patch) | |
tree | 21286340ad19b620a25d4d56733248fe5364d93c /src/gallium/drivers | |
parent | fa4fec2d1bfa459d46601b2f1e104b9533bf679f (diff) |
cell: fix typo (s/10/0)
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_screen.c b/src/gallium/drivers/cell/ppu/cell_screen.c index d2235579507..ee3e4444154 100644 --- a/src/gallium/drivers/cell/ppu/cell_screen.c +++ b/src/gallium/drivers/cell/ppu/cell_screen.c @@ -82,7 +82,7 @@ cell_get_param(struct pipe_screen *screen, int param) case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS: return CELL_MAX_TEXTURE_LEVELS; default: - return 10; + return 0; } } @@ -108,7 +108,7 @@ cell_get_paramf(struct pipe_screen *screen, int param) return 16.0; /* arbitrary */ default: - return 10; + return 0; } } |