diff options
author | Matt Turner <[email protected]> | 2014-02-20 09:14:40 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-06-01 13:29:23 -0700 |
commit | a391e99b231f107e8881c00a85af236472f5167d (patch) | |
tree | 57b68af97f5dbfda5119acde846ecf2735aa675b /src/mesa/drivers/dri | |
parent | 6d3a15223aedaff26dd3aab900e02c8548956973 (diff) |
i965/fs: Disable fs_inst assignment operator.
The fs_reg src array is going to turn into a pointer and we'd rather not
consider the implications of shallow copying fs_insts.
Reviewed-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index bda233c29df..e079842c186 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -185,6 +185,8 @@ public: }; class fs_inst : public backend_instruction { + fs_inst &operator=(const fs_inst &); + public: DECLARE_RALLOC_CXX_OPERATORS(fs_inst) |