gallium: typo: s/PIPE_FORMAT_Z16UNORM/PIPE_FORMAT_Z16_UNORM/

This commit is contained in:
Brian Paul 2008-09-11 12:01:19 -06:00
parent 7d3d5fb7a5
commit fbf1586b36

View file

@ -354,7 +354,7 @@ create_xmesa_buffer(XMesaDrawable d, BufferType type,
depthFormat = PIPE_FORMAT_S8Z24_UNORM;
#else
else if (vis->mesa_visual.depthBits <= 16)
depthFormat = PIPE_FORMAT_Z16UNORM;
depthFormat = PIPE_FORMAT_Z16_UNORM;
else if (vis->mesa_visual.depthBits <= 24)
depthFormat = PIPE_FORMAT_S8Z24_UNORM;
else