<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [regression, bisected] Piglit spec/ext_packed_float/ getteximage-invalid-format-for-packed-type fails"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=91425#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [regression, bisected] Piglit spec/ext_packed_float/ getteximage-invalid-format-for-packed-type fails"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=91425">bug 91425</a>
              from <span class="vcard"><a class="email" href="mailto:imirkin@alum.mit.edu" title="Ilia Mirkin <imirkin@alum.mit.edu>"> <span class="fn">Ilia Mirkin</span></a>
</span></b>
        <pre>(In reply to Brian Paul from <a href="show_bug.cgi?id=91425#c1">comment #1</a>)
<span class="quote">> Hmm, I can't reproduce that.  The test passes completely for me.

> What driver are you using?  I'm testing llvmpipe/softpipe.</span >

Odd. I repro with llvmpipe. I guess the issue is the

      if (depth != 1) {
         _mesa_error(ctx, GL_INVALID_VALUE,
                     "%s(depth = %d)", caller, depth);
         return true;
      }

check for 1d/2d targets. The piglit test does:

glGetTexImage(GL_TEXTURE_2D, 0, format, type, pxBuffer);

Since it's checking for, roughly speaking, invalid things, I assume that the
texImage isn't there, and so get_texture_image_dims will end up setting a depth
= 0. Should that be depth = 1 instead?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>