mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
The most minor of minor optimizations. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@6166 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5fc04f288c
commit
b13deef232
1 changed files with 13 additions and 19 deletions
|
@ -3393,7 +3393,7 @@ static void grouscan(int32_t dax1, int32_t dax2, int32_t sectnum, char dastat)
|
||||||
{
|
{
|
||||||
int32_t i, l, x, y, dx, dy, wx, wy, y1, y2, daz;
|
int32_t i, l, x, y, dx, dy, wx, wy, y1, y2, daz;
|
||||||
int32_t daslope, dasqr;
|
int32_t daslope, dasqr;
|
||||||
int32_t shoffs, shinc, m1, m2;
|
int32_t shoffs, m1, m2;
|
||||||
intptr_t *mptr1, *mptr2, j;
|
intptr_t *mptr1, *mptr2, j;
|
||||||
|
|
||||||
// Er, yes, they're not global anymore:
|
// Er, yes, they're not global anymore:
|
||||||
|
@ -3515,12 +3515,14 @@ static void grouscan(int32_t dax1, int32_t dax2, int32_t sectnum, char dastat)
|
||||||
|
|
||||||
l = (globalzd>>16);
|
l = (globalzd>>16);
|
||||||
|
|
||||||
shinc = mulscale16(globalz,xdimenscale);
|
int32_t const shinc = mulscale16(globalz,xdimenscale);
|
||||||
if (shinc > 0) shoffs = (4<<15); else shoffs = ((16380-ydimen)<<15); // JBF: was 2044
|
|
||||||
if (dastat == 0) y1 = umost[dax1]; else y1 = max(umost[dax1],dplc[dax1]);
|
shoffs = (shinc > 0) ? (4 << 15) : ((16380 - ydimen) << 15); // JBF: was 2044
|
||||||
|
y1 = (dastat == 0) ? umost[dax1] : max(umost[dax1], dplc[dax1]);
|
||||||
|
|
||||||
m1 = mulscale16(y1,globalzd) + (globalzx>>6);
|
m1 = mulscale16(y1,globalzd) + (globalzx>>6);
|
||||||
//Avoid visibility overflow by crossing horizon
|
//Avoid visibility overflow by crossing horizon
|
||||||
if (globalzd > 0) m1 += (globalzd>>16); else m1 -= (globalzd>>16);
|
m1 += klabs((int32_t) (globalzd>>16));
|
||||||
m2 = m1+l;
|
m2 = m1+l;
|
||||||
mptr1 = (intptr_t *)&slopalookup[y1+(shoffs>>15)]; mptr2 = mptr1+1;
|
mptr1 = (intptr_t *)&slopalookup[y1+(shoffs>>15)]; mptr2 = mptr1+1;
|
||||||
|
|
||||||
|
@ -8436,27 +8438,19 @@ killsprite:
|
||||||
// Writing e.g. "while (maskwallcnt--)" is wrong!
|
// Writing e.g. "while (maskwallcnt--)" is wrong!
|
||||||
while (maskwallcnt)
|
while (maskwallcnt)
|
||||||
{
|
{
|
||||||
vec2f_t dot, dot2, middle;
|
|
||||||
// PLAG: sorting stuff
|
// PLAG: sorting stuff
|
||||||
_equation maskeq, p1eq, p2eq;
|
|
||||||
|
|
||||||
const int32_t w = (getrendermode()==REND_POLYMER) ?
|
const int32_t w = (getrendermode()==REND_POLYMER) ?
|
||||||
maskwall[maskwallcnt-1] : thewall[maskwall[maskwallcnt-1]];
|
maskwall[maskwallcnt-1] : thewall[maskwall[maskwallcnt-1]];
|
||||||
|
|
||||||
maskwallcnt--;
|
maskwallcnt--;
|
||||||
|
|
||||||
dot.x = (float)wall[w].x;
|
vec2f_t dot = { (float)wall[w].x, (float)wall[w].y };
|
||||||
dot.y = (float)wall[w].y;
|
vec2f_t dot2 = { (float)wall[wall[w].point2].x, (float)wall[wall[w].point2].y };
|
||||||
dot2.x = (float)wall[wall[w].point2].x;
|
vec2f_t middle = { (dot.x + dot2.x) * .5f, (dot.y + dot2.y) * .5f };
|
||||||
dot2.y = (float)wall[wall[w].point2].y;
|
|
||||||
|
|
||||||
maskeq = equation(dot.x, dot.y, dot2.x, dot2.y);
|
_equation maskeq = equation(dot.x, dot.y, dot2.x, dot2.y);
|
||||||
|
_equation p1eq = equation(pos.x, pos.y, dot.x, dot.y);
|
||||||
p1eq = equation(pos.x, pos.y, dot.x, dot.y);
|
_equation p2eq = equation(pos.x, pos.y, dot2.x, dot2.y);
|
||||||
p2eq = equation(pos.x, pos.y, dot2.x, dot2.y);
|
|
||||||
|
|
||||||
middle.x = (dot.x + dot2.x) * .5f;
|
|
||||||
middle.y = (dot.y + dot2.y) * .5f;
|
|
||||||
|
|
||||||
i = spritesortcnt;
|
i = spritesortcnt;
|
||||||
while (i)
|
while (i)
|
||||||
|
|
Loading…
Reference in a new issue