[Mesa-dev] [Bug 78097] New: glUniform1ui and friends not supported by display lists

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Tue Apr 29 16:31:17 PDT 2014


https://bugs.freedesktop.org/show_bug.cgi?id=78097

          Priority: medium
            Bug ID: 78097
          Assignee: mesa-dev at lists.freedesktop.org
           Summary: glUniform1ui and friends not supported by display
                    lists
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: idr at freedesktop.org
          Hardware: Other
            Status: NEW
           Version: git
         Component: Mesa core
           Product: Mesa

Discovered by inspection while implementing display list support for
ARB_separate_shader_objects.  Note the following code in dlist.c:

     case OPCODE_UNIFORM_1UI:
        /*CALL_Uniform1uiARB(ctx->Exec, (n[1].i, n[2].i));*/
        break;
     case OPCODE_UNIFORM_2UI:
        /*CALL_Uniform2uiARB(ctx->Exec, (n[1].i, n[2].i, n[3].i));*/
        break;
     case OPCODE_UNIFORM_3UI:
        /*CALL_Uniform3uiARB(ctx->Exec, (n[1].i, n[2].i, n[3].i, n[4].i));*/
        break;
     case OPCODE_UNIFORM_4UI:
        /*CALL_Uniform4uiARB(ctx->Exec,
                              (n[1].i, n[2].i, n[3].i, n[4].i, n[5].i));
            */
        break;

Someone should adapt tests/spec/arb_separate_shader_objects/dlist.c to be a
(new) tests/spec/gl-3.0/dlist.c to test these functions.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140429/6226e5a7/attachment.html>


More information about the mesa-dev mailing list