Commit 50851231 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

d3d11: Trace skipped DXBC chunks.

parent c83a4700
......@@ -47,10 +47,8 @@
#define TAG_OSG5 MAKE_TAG('O', 'S', 'G', '5')
#define TAG_OSGN MAKE_TAG('O', 'S', 'G', 'N')
#define TAG_PCSG MAKE_TAG('P', 'C', 'S', 'G')
#define TAG_RDEF MAKE_TAG('R', 'D', 'E', 'F')
#define TAG_SHDR MAKE_TAG('S', 'H', 'D', 'R')
#define TAG_SHEX MAKE_TAG('S', 'H', 'E', 'X')
#define TAG_STAT MAKE_TAG('S', 'T', 'A', 'T')
struct d3d_device;
......
......@@ -136,12 +136,8 @@ static HRESULT shdr_handler(const char *data, DWORD data_size, DWORD tag, void *
}
break;
case TAG_RDEF:
case TAG_STAT:
break;
default:
FIXME("Unhandled chunk %s.\n", debugstr_an((const char *)&tag, 4));
TRACE("Skipping chunk %s.\n", debugstr_an((const char *)&tag, 4));
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment