projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d3a152
)
i965/fs: Disable fs_inst assignment operator.
author
Matt Turner
<mattst88@gmail.com>
Thu, 20 Feb 2014 17:14:40 +0000
(09:14 -0800)
committer
Matt Turner
<mattst88@gmail.com>
Sun, 1 Jun 2014 20:29:23 +0000
(13:29 -0700)
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 <topi.pohjolainen@intel.com>
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_fs.h
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_fs.h
b/src/mesa/drivers/dri/i965/brw_fs.h
index bda233c29df97f9b0f156d69f7483dec9d1c4a73..e079842c1869b7fcc168fd463046c4aad522d32f 100644
(file)
--- 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)