diff options
author | Marek Olšák <[email protected]> | 2011-06-14 20:47:57 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-06-14 20:47:57 +0200 |
commit | 7d488ade239652d67f78a79bbd9712e4690591cb (patch) | |
tree | 9a5aefe0bf2b26a5130fddb4234950a1d3250025 /src | |
parent | df6355512a7f12ca191d05556279991439b77669 (diff) |
r600g: fix RGB32F texturing
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index 7ffea6961de..470d26e2c9f 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -1082,8 +1082,9 @@ uint32_t r600_translate_texformat(struct pipe_screen *screen, goto out_word4; } } - + goto out_unknown; } + out_word4: if (word4_p) *word4_p = word4; |