Commit d574d639 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Recognize the SM4 dcl_maxOutputVertexCount opcode.

parent 0a17173b
...@@ -439,6 +439,7 @@ enum WINED3D_SHADER_INSTRUCTION_HANDLER ...@@ -439,6 +439,7 @@ enum WINED3D_SHADER_INSTRUCTION_HANDLER
WINED3DSIH_CRS, WINED3DSIH_CRS,
WINED3DSIH_CUT, WINED3DSIH_CUT,
WINED3DSIH_DCL, WINED3DSIH_DCL,
WINED3DSIH_DCL_VERTICES_OUT,
WINED3DSIH_DEF, WINED3DSIH_DEF,
WINED3DSIH_DEFB, WINED3DSIH_DEFB,
WINED3DSIH_DEFI, WINED3DSIH_DEFI,
...@@ -666,6 +667,7 @@ struct wined3d_shader_instruction ...@@ -666,6 +667,7 @@ struct wined3d_shader_instruction
union union
{ {
struct wined3d_shader_semantic semantic; struct wined3d_shader_semantic semantic;
UINT count;
} declaration; } declaration;
}; };
......
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