diff options
author | Keith Whitwell <[email protected]> | 2009-10-27 00:29:21 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-10-27 00:29:21 +0000 |
commit | 7ba2fe40fa092551f1c493d754c80ca93564d32b (patch) | |
tree | 5e541fb8e41fefba6b692bf6e59f9b53eecabe78 /src/gallium/drivers/i965/brw_vs.h | |
parent | 5a304995e09d8dbfd40a2dfab32eacb7e85798e3 (diff) |
i965g: still working on compilation
Diffstat (limited to 'src/gallium/drivers/i965/brw_vs.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_vs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/i965/brw_vs.h b/src/gallium/drivers/i965/brw_vs.h index 58119567dcf..2a2dbb3457c 100644 --- a/src/gallium/drivers/i965/brw_vs.h +++ b/src/gallium/drivers/i965/brw_vs.h @@ -54,6 +54,7 @@ struct brw_vs_compile { struct brw_compile func; struct brw_vs_prog_key key; struct brw_vs_prog_data prog_data; + struct brw_chipset chipset; struct brw_vertex_shader *vp; @@ -88,7 +89,12 @@ struct brw_vs_compile { struct brw_instruction *if_inst[MAX_IF_DEPTH]; struct brw_instruction *loop_inst[MAX_LOOP_DEPTH]; + GLuint insn; + GLuint if_depth; + GLuint loop_depth; + GLuint end_offset; + struct brw_indirect stack_index; }; |