Mesa (master): i965/fs: Disable fs_inst assignment operator.

Matt Turner mattst88 at kemper.freedesktop.org
Sun Jun 1 20:26:20 UTC 2014


Module: Mesa
Branch: master
Commit: a391e99b231f107e8881c00a85af236472f5167d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a391e99b231f107e8881c00a85af236472f5167d

Author: Matt Turner <mattst88 at gmail.com>
Date:   Thu Feb 20 09:14:40 2014 -0800

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 <topi.pohjolainen at intel.com>
Reviewed-by: Chris Forbes <chrisf at ijw.co.nz>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/brw_fs.h |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index bda233c..e079842 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)
 




More information about the mesa-commit mailing list