mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 14:58:32 +00:00
clang-modernize -loop-convert
and some manual adjustments
This commit is contained in:
parent
f401263867
commit
c89f04a7c5
22 changed files with 339 additions and 293 deletions
|
@ -54,12 +54,12 @@ void DoState(PointerWrap &p)
|
|||
{
|
||||
ZSlope.DoState(p);
|
||||
WSlope.DoState(p);
|
||||
for (auto& ColorSlope : ColorSlopes)
|
||||
for (int n=0; n<4; ++n)
|
||||
ColorSlope[n].DoState(p);
|
||||
for (auto& TexSlope : TexSlopes)
|
||||
for (int n=0; n<3; ++n)
|
||||
TexSlope[n].DoState(p);
|
||||
for (auto& color_slopes_1d : ColorSlopes)
|
||||
for (Slope& color_slope : color_slopes_1d)
|
||||
color_slope.DoState(p);
|
||||
for (auto& tex_slopes_1d : TexSlopes)
|
||||
for (Slope& tex_slope : tex_slopes_1d)
|
||||
tex_slope.DoState(p);
|
||||
p.Do(vertex0X);
|
||||
p.Do(vertex0Y);
|
||||
p.Do(vertexOffsetX);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue