diff options
author | Corbin Simpson <[email protected]> | 2009-01-23 17:01:04 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:27 -0800 |
commit | 1a5eea0c1e9ce6162ed6b07c337bffe62cb3c221 (patch) | |
tree | f9d7fbc6d6c092f76985d83f9eb28968ae0781b8 /src/gallium/drivers/r300/r300_screen.c | |
parent | 02c6e523305de017b49d6851034fcea6c568e94c (diff) |
r300: Finish basic state setup.
I have successfully fooled glxinfo into believing that I am a competent
writer of code. Next step is to trick trivial/clear.
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 2b83ae060c2..bd5aa4f4664 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -117,6 +117,7 @@ static float r300_get_paramf(struct pipe_screen* pscreen, int param) static boolean check_tex_2d_format(enum pipe_format format) { switch (format) { + case PIPE_FORMAT_A8R8G8B8_UNORM: case PIPE_FORMAT_I8_UNORM: return TRUE; default: |