diff options
author | Brian Paul <[email protected]> | 2010-02-23 18:56:58 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-23 18:57:18 -0700 |
commit | cd25e436ef8cc355109ba302621533e522f2f50b (patch) | |
tree | 71b1612aec5a98f9aef3838caeb4152d9a3a14fa /src/gallium | |
parent | 0e7c22ff3c8532dad35a08f8b350be78383bfb0d (diff) |
llvmpipe: remove Z16 format override hack
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_texture.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_texture.c b/src/gallium/drivers/llvmpipe/lp_texture.c index 022bf92cb46..7f456355428 100644 --- a/src/gallium/drivers/llvmpipe/lp_texture.c +++ b/src/gallium/drivers/llvmpipe/lp_texture.c @@ -124,12 +124,6 @@ llvmpipe_texture_create(struct pipe_screen *_screen, pipe_reference_init(&lpt->base.reference, 1); lpt->base.screen = &screen->base; - /* XXX: The xlib state tracker is brain-dead and will request - * PIPE_FORMAT_Z16_UNORM no matter how much we tell it we don't support it. - */ - if (lpt->base.format == PIPE_FORMAT_Z16_UNORM) - lpt->base.format = PIPE_FORMAT_Z32_UNORM; - if (lpt->base.tex_usage & (PIPE_TEXTURE_USAGE_DISPLAY_TARGET | PIPE_TEXTURE_USAGE_PRIMARY)) { if (!llvmpipe_displaytarget_layout(screen, lpt)) |