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

Ian Romanick <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Compute shader compiling    |Compiler diagnostic for
                   |fails for invalid input     |sampler declared as "out"
                   |layout qualifier used       |parameter of function is
                   |                            |terrible

--- Comment #2 from Ian Romanick <[email protected]> ---
The problem is dst is marked as an "out" parameter of the function.  sampler
variables cannot be assigned, so it's impossible for it to be an out parameter.
 Deleting "out" allows the shader to compile.

Sadly, the compiler error message is useless for debugging that problem.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to