diff options
author | Younes Manton <younes.m@gmail.com> | 2009-10-24 17:36:48 -0400 |
---|---|---|
committer | Younes Manton <younes.m@gmail.com> | 2009-10-31 09:42:49 -0400 |
commit | 91232b7004d7a9fbf4f99bb9ec4e5eea8e1c6eef (patch) | |
tree | 68cb0096dd7c8953d78ee42bfb1e175661f766b1 /src/gallium/drivers/nv10 | |
parent | 9831e1f76cd020e1cde2b13e03149415319a8135 (diff) |
nouveau: Support X8R8G8B8 textures on nv30, nv40 and RTs on nv10-nv40.
Diffstat (limited to 'src/gallium/drivers/nv10')
-rw-r--r-- | src/gallium/drivers/nv10/nv10_state_emit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv10/nv10_state_emit.c b/src/gallium/drivers/nv10/nv10_state_emit.c index d8691ef9c6..2577ab73b5 100644 --- a/src/gallium/drivers/nv10/nv10_state_emit.c +++ b/src/gallium/drivers/nv10/nv10_state_emit.c @@ -129,6 +129,9 @@ static void nv10_state_emit_framebuffer(struct nv10_context* nv10) rt_format = NV10TCL_RT_FORMAT_TYPE_LINEAR; switch (colour_format) { + case PIPE_FORMAT_X8R8G8B8_UNORM: + rt_format |= NV10TCL_RT_FORMAT_COLOR_X8R8G8B8; + break; case PIPE_FORMAT_A8R8G8B8_UNORM: case 0: rt_format |= NV10TCL_RT_FORMAT_COLOR_A8R8G8B8; |