commit | 19d223cadea1956eac0f0f8629c0ce1f7dc7a9b5 | [log] [tgz] |
---|---|---|
author | H. Verbeet <hverbeet@gmail.com> | Tue Feb 27 20:51:58 2007 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Feb 28 13:35:34 2007 +0100 |
tree | 1ad3f12c25d5c4a28b526d0246434ccd72fced24 | |
parent | 2c85e5e8a3998591c89691c524f64c455def019e [diff] [blame] |
wined3d: Store multiple constant indices per list entry.
diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h index add82a8..dbb8364 100644 --- a/dlls/wined3d/wined3d_private.h +++ b/dlls/wined3d/wined3d_private.h
@@ -1194,9 +1194,10 @@ } SAVEDSTATES; typedef struct { - struct list entry; - int idx; -} constant_entry; + struct list entry; + DWORD count; + DWORD idx[13]; +} constants_entry; struct IWineD3DStateBlockImpl {