diff options
author | Jason Ekstrand <[email protected]> | 2015-04-16 14:34:04 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-06-23 14:28:08 -0700 |
commit | d7565b7d65f8203c20735a61b86e9158b8ec4447 (patch) | |
tree | 0673aa24fde1168b719a01e0432604003b4abda4 /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | e639a6f68e701f23b977a49c45d646c164991d36 (diff) |
i965: Remove the dependance on brw_context from the generators
Reviewed-by: Chris Forbes <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 7414b65222d..1d52ff0d80d 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -398,7 +398,7 @@ public: class fs_generator { public: - fs_generator(const struct brw_compiler *compiler, + fs_generator(const struct brw_compiler *compiler, void *log_data, void *mem_ctx, const void *key, struct brw_stage_prog_data *prog_data, @@ -494,6 +494,8 @@ private: bool patch_discard_jumps_to_fb_writes(); const struct brw_compiler *compiler; + void *log_data; /* Passed to compiler->*_log functions */ + const struct brw_device_info *devinfo; struct brw_codegen *p; |