From: José Fonseca Date: Fri, 8 Apr 2011 14:11:39 +0000 (+0100) Subject: svgadump: Dump the new depth format names. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f74c04c22c0353cdd53bc68a46c86d1e3d6a6346;p=mesa.git svgadump: Dump the new depth format names. --- diff --git a/src/gallium/drivers/svga/svgadump/svga_dump.c b/src/gallium/drivers/svga/svgadump/svga_dump.c index 7feb5e14c57..67d86d2b6ef 100644 --- a/src/gallium/drivers/svga/svgadump/svga_dump.c +++ b/src/gallium/drivers/svga/svgadump/svga_dump.c @@ -1430,6 +1430,15 @@ dump_SVGA3dCmdDefineSurface(const SVGA3dCmdDefineSurface *cmd) case SVGA3D_AYUV: _debug_printf("\t\t.format = SVGA3D_AYUV\n"); break; + case SVGA3D_Z_DF16: + _debug_printf("\t\t.format = SVGA3D_Z_D16\n"); + break; + case SVGA3D_Z_DF24: + _debug_printf("\t\t.format = SVGA3D_Z_DF24\n"); + break; + case SVGA3D_Z_D24S8_INT: + _debug_printf("\t\t.format = SVGA3D_Z_D24S8_INT\n"); + break; default: _debug_printf("\t\t.format = %i\n", (*cmd).format); break;