From 010e285b88bac605e27faaf66a2d57d725890718 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Mon, 24 Jan 2011 11:19:39 +0100 Subject: [PATCH] wined3d: WINED3DFMT_INTZ is a FOURCC format. This is mostly for consistency, in practice ddraw code is never going to use this format. --- dlls/wined3d/utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/wined3d/utils.c b/dlls/wined3d/utils.c index 15ff2983cfc..c114f108a27 100644 --- a/dlls/wined3d/utils.c +++ b/dlls/wined3d/utils.c @@ -157,6 +157,7 @@ static const struct wined3d_format_base_flags format_base_flags[] = {WINED3DFMT_MULTI2_ARGB8, WINED3DFMT_FLAG_FOURCC}, {WINED3DFMT_G8R8_G8B8, WINED3DFMT_FLAG_FOURCC}, {WINED3DFMT_R8G8_B8G8, WINED3DFMT_FLAG_FOURCC}, + {WINED3DFMT_INTZ, WINED3DFMT_FLAG_FOURCC}, {WINED3DFMT_P8_UINT, WINED3DFMT_FLAG_GETDC}, {WINED3DFMT_B8G8R8_UNORM, WINED3DFMT_FLAG_GETDC}, {WINED3DFMT_B8G8R8A8_UNORM, WINED3DFMT_FLAG_GETDC},