diff options
author | Corbin Simpson <[email protected]> | 2009-09-30 19:44:38 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-10-04 09:30:30 -0700 |
commit | 2a929a08ab4fa4501dca88cc988cbf469b7deeb5 (patch) | |
tree | c0ff6ef080bd7a993a4532f35a9082bf303d9a6d /src/gallium/drivers/r300/r300_screen.c | |
parent | f194d2737b059cf6b99caa18f8ec2d46a55ada88 (diff) |
r300g: xRGB and RGBx formats.
We now have 48 GLX visuals. Pretty soon, we'll have 90+ visuals,
only five of which ever get tested. :3
Diffstat (limited to 'src/gallium/drivers/r300/r300_screen.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index f2659ca61f7..81d01b1320c 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -205,7 +205,9 @@ static boolean check_tex_2d_format(enum pipe_format format, uint32_t usage, /* Colorbuffer or texture */ case PIPE_FORMAT_A8R8G8B8_UNORM: + case PIPE_FORMAT_X8R8G8B8_UNORM: case PIPE_FORMAT_R8G8B8A8_UNORM: + case PIPE_FORMAT_R8G8B8X8_UNORM: case PIPE_FORMAT_I8_UNORM: return usage & (PIPE_TEXTURE_USAGE_RENDER_TARGET | |