Module: Mesa Branch: master Commit: 8cf6482c3da9493dacf4a6a495ae3c0193cf75a7 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8cf6482c3da9493dacf4a6a495ae3c0193cf75a7
Author: Tom Stellard <[email protected]> Date: Tue Oct 14 17:55:23 2014 -0400 clover: Fix regression in module serialization We need to serialize semantic information for arguments, which was added in 06139c56fa070f84a931a4ddbdb894c9e8d24f55. Reviewed-by: Francisco Jerez <[email protected]> --- src/gallium/state_trackers/clover/core/module.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/state_trackers/clover/core/module.cpp b/src/gallium/state_trackers/clover/core/module.cpp index 9ef584b..be10e35 100644 --- a/src/gallium/state_trackers/clover/core/module.cpp +++ b/src/gallium/state_trackers/clover/core/module.cpp @@ -157,6 +157,7 @@ namespace { _proc(s, x.target_size); _proc(s, x.target_align); _proc(s, x.ext_type); + _proc(s, x.semantic); } }; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
