diff options
author | Matt Turner <[email protected]> | 2014-05-25 10:42:32 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-06-02 15:17:29 -0700 |
commit | 92b055625da1b8d9144bf746ac67210df7deba73 (patch) | |
tree | 0a6402a1c0345ebfdc49fb575abaa07dbef90d7d /src/mesa/drivers/dri/i965/brw_vec4.h | |
parent | e374809819d82f2e3e946fe809c4d46061ddc5b5 (diff) |
i965: Move annotation info into generate code.
Suggested by Ken as a way to cut down lines of code.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4.h b/src/mesa/drivers/dri/i965/brw_vec4.h index fd58b3c8401..c2bbd68edf6 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4.h +++ b/src/mesa/drivers/dri/i965/brw_vec4.h @@ -646,8 +646,7 @@ public: const unsigned *generate_assembly(exec_list *insts, unsigned *asm_size); private: - void generate_code(exec_list *instructions, - struct annotation_info *annotation); + void generate_code(exec_list *instructions); void generate_vec4_instruction(vec4_instruction *inst, struct brw_reg dst, struct brw_reg *src); @@ -748,8 +747,7 @@ public: const unsigned *generate_assembly(exec_list *insts, unsigned *asm_size); private: - void generate_code(exec_list *instructions, - struct annotation_info *annotation); + void generate_code(exec_list *instructions); void generate_vec4_instruction(vec4_instruction *inst, struct brw_reg dst, struct brw_reg *src); |