<html>
<head>
<base href="https://bugs.freedesktop.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Incorrect rendering of Unigine Valley running in VM on VMware Workstation"
href="https://bugs.freedesktop.org/show_bug.cgi?id=89224#c3">Comment # 3</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Incorrect rendering of Unigine Valley running in VM on VMware Workstation"
href="https://bugs.freedesktop.org/show_bug.cgi?id=89224">bug 89224</a>
from <span class="vcard"><a class="email" href="mailto:andrey.sudnik@intel.com" title="Andrey <andrey.sudnik@intel.com>"> <span class="fn">Andrey</span></a>
</span></b>
<pre>I found quick fix, but not sure it is completely correct:
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
b/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
index 6769310..2ed9ce1 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_copy_propagation.cpp
@@ -47,6 +47,7 @@ is_direct_copy(vec4_instruction *inst)
return (inst->opcode == BRW_OPCODE_MOV &&
!inst->predicate &&
inst->dst.file == GRF &&
+ !inst->saturate &&
!inst->dst.reladdr &&
!inst->src[0].reladdr &&
inst->dst.type == inst->src[0].type);</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the QA Contact for the bug.</li>
</ul>
</body>
</html>