Re: [Mesa-dev] [PATCH] gallium: replace INLINE with inline

2015-07-21 Thread Ilia Mirkin
That's already done :) At least in nouveau, thanks to Samuel. On Tue, Jul 21, 2015 at 11:22 AM, Marek Olšák wrote: > Acked-by: Marek Olšák > > What's next? boolean -> bool? :) > > Marek > > On Tue, Jul 21, 2015 at 2:20 AM, Ilia Mirkin wrote: >> Generated by running: >> git grep -l INLINE src/ga

Re: [Mesa-dev] [PATCH] gallium: replace INLINE with inline

2015-07-21 Thread Marek Olšák
Acked-by: Marek Olšák What's next? boolean -> bool? :) Marek On Tue, Jul 21, 2015 at 2:20 AM, Ilia Mirkin wrote: > Generated by running: > git grep -l INLINE src/gallium/ | xargs sed -i 's/\bINLINE\b/inline/g' > git grep -l INLINE src/mesa/state_tracker/ | xargs sed -i > 's/\bINLINE\b/inline/

[Mesa-dev] [PATCH] gallium: replace INLINE with inline

2015-07-20 Thread Ilia Mirkin
Generated by running: git grep -l INLINE src/gallium/ | xargs sed -i 's/\bINLINE\b/inline/g' git grep -l INLINE src/mesa/state_tracker/ | xargs sed -i 's/\bINLINE\b/inline/g' git checkout src/gallium/state_trackers/clover/Doxyfile and manual edits to src/gallium/include/pipe/p_compiler.h src/gall