<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Suffixless KHR_robustness functions aren't exposed in ES 3.2"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=105105#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Suffixless KHR_robustness functions aren't exposed in ES 3.2"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=105105">bug 105105</a>
              from <span class="vcard"><a class="email" href="mailto:lemody@gmail.com" title="Tapani Pälli <lemody@gmail.com>"> <span class="fn">Tapani Pälli</span></a>
</span></b>
        <pre>It looks like these 2 tests fail for different reasons:

- 'readnpix' hits generic_nop (glapi issue)

- 'getnuniform', problem seems to be that according to Mesa these uniforms are
inactive and therefore no uniformstorage is available. I can see that linker
reserves explicit locations correctly (inputf : 11, inputi : 12, inputu : 13)
but opt_dead_code removes the variables:

--- 8< ---
Removed declaration of inputf@0x34f1f80
Removed declaration of inputu@0x34f26b0
Removed declaration of inputi@0x34f2540
--- 8< ---

If I modify opt_dead_code to not remove those variables the test passes. I
hacked it like this:

--- 8< ---
+            if (entry->var->data.explicit_location)
+               continue;
--- 8< ---

It seems compiler/linker should realize that they are written to shared values
so we should not optimize those away.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>