diff options
author | Keith Whitwell <[email protected]> | 2009-10-29 20:18:01 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-10-29 20:18:01 +0000 |
commit | 99cc0fd67597cbcd6106afcf437a0d5e2431c9df (patch) | |
tree | b01d1ce2a717dd366c04e40db3481614c4ba7457 /src/gallium/drivers/i965/brw_eu.h | |
parent | 81b8589f064204d9ddcd7d1f9d43d2dcf5676235 (diff) |
i965g: work in progress on fragment shaders
Diffstat (limited to 'src/gallium/drivers/i965/brw_eu.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_eu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/i965/brw_eu.h b/src/gallium/drivers/i965/brw_eu.h index 3379522104a..7bddc3859ca 100644 --- a/src/gallium/drivers/i965/brw_eu.h +++ b/src/gallium/drivers/i965/brw_eu.h @@ -109,8 +109,8 @@ struct brw_indirect { }; -struct brw_glsl_label; -struct brw_glsl_call; +struct brw_eu_label; +struct brw_eu_call; @@ -130,8 +130,8 @@ struct brw_compile { GLboolean single_program_flow; struct brw_context *brw; - struct brw_glsl_label *first_label; /**< linked list of labels */ - struct brw_glsl_call *first_call; /**< linked list of CALs */ + struct brw_eu_label *first_label; /**< linked list of labels */ + struct brw_eu_call *first_call; /**< linked list of CALs */ }; |