<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Lack of grass in The Talos Principle on radeonsi (native\wine\nine)"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=89069#c20">Comment # 20</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Lack of grass in The Talos Principle on radeonsi (native\wine\nine)"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=89069">bug 89069</a>
              from <span class="vcard"><a class="email" href="mailto:michel@daenzer.net" title="Michel Dänzer <michel@daenzer.net>"> <span class="fn">Michel Dänzer</span></a>
</span></b>
        <pre>(In reply to smoki from <a href="show_bug.cgi?id=89069#c19">comment #19</a>)
<span class="quote">>  if (type != TGSI_PROCESSOR_COMPUTE && TGSI_PROCESSOR_FRAGMENT) {</span >

That always evaluates as false, because TGSI_PROCESSOR_FRAGMENT is 0. You
probably meant

  if (type != TGSI_PROCESSOR_COMPUTE && type != TGSI_PROCESSOR_FRAGMENT) {

but that might not work, I suspect this problem is more likely related to the
vertex shader.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>