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

wined3d: Fix parsing of SM5 "_opc" flag.

parent 7207b3db
......@@ -68,7 +68,7 @@ WINE_DECLARE_DEBUG_CHANNEL(d3d_bytecode);
#define WINED3D_SM5_FP_TABLE_COUNT_MASK 0xffffu
#define WINED3D_SM5_UAV_FLAGS_SHIFT 11
#define WINED3D_SM5_UAV_FLAGS_MASK (0x8fffu << WINED3D_SM5_UAV_FLAGS_SHIFT)
#define WINED3D_SM5_UAV_FLAGS_MASK (0x1fffu << WINED3D_SM5_UAV_FLAGS_SHIFT)
#define WINED3D_SM5_SYNC_FLAGS_SHIFT 11
#define WINED3D_SM5_SYNC_FLAGS_MASK (0xffu << WINED3D_SM5_SYNC_FLAGS_SHIFT)
......
......@@ -563,7 +563,7 @@ enum wined3d_shader_sync_flags
enum wined3d_shader_uav_flags
{
WINED3DSUF_GLOBALLY_COHERENT = 0x20,
WINED3DSUF_ORDER_PRESERVING_COUNTER = 0x8000,
WINED3DSUF_ORDER_PRESERVING_COUNTER = 0x1000,
};
enum wined3d_tessellator_domain
......
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