diff options
author | Kenneth Graunke <[email protected]> | 2018-02-26 16:34:55 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-03-02 14:20:22 -0800 |
commit | 9fa95359df54f8de8219731e55d89abe816a43e8 (patch) | |
tree | 674ed3dfef5cd381adefc81636aa2a805f291b2c /src/intel/compiler/brw_fs.h | |
parent | b04cf529f2e7bab6be22410d4be293aa5e650b03 (diff) |
intel: Drop program size pointer from vec4/fs assembly getters.
These days, we're just passing a pointer to a prog_data field, which
we already have access to. We can just use it directly.
(In the past, it was a pointer to a separate value.)
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_fs.h')
-rw-r--r-- | src/intel/compiler/brw_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_fs.h b/src/intel/compiler/brw_fs.h index 38e9991df73..b0799a0f5e2 100644 --- a/src/intel/compiler/brw_fs.h +++ b/src/intel/compiler/brw_fs.h @@ -395,7 +395,7 @@ public: void enable_debug(const char *shader_name); int generate_code(const cfg_t *cfg, int dispatch_width); - const unsigned *get_assembly(unsigned int *assembly_size); + const unsigned *get_assembly(); private: void fire_fb_write(fs_inst *inst, |