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

wined3d: Eliminate holes in wined3d_shader_instruction structure.

parent a48d7a27
...@@ -1140,13 +1140,13 @@ struct wined3d_shader_instruction ...@@ -1140,13 +1140,13 @@ struct wined3d_shader_instruction
const struct wined3d_shader_context *ctx; const struct wined3d_shader_context *ctx;
enum WINED3D_SHADER_INSTRUCTION_HANDLER handler_idx; enum WINED3D_SHADER_INSTRUCTION_HANDLER handler_idx;
DWORD flags; DWORD flags;
BOOL coissue; unsigned int dst_count;
const struct wined3d_shader_src_param *predicate; unsigned int src_count;
UINT dst_count;
const struct wined3d_shader_dst_param *dst; const struct wined3d_shader_dst_param *dst;
UINT src_count;
const struct wined3d_shader_src_param *src; const struct wined3d_shader_src_param *src;
struct wined3d_shader_texel_offset texel_offset; struct wined3d_shader_texel_offset texel_offset;
BOOL coissue;
const struct wined3d_shader_src_param *predicate;
union union
{ {
struct wined3d_shader_semantic semantic; struct wined3d_shader_semantic semantic;
......
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