Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Merge requests
!1184
Software 3D floor rendering optimization (second attempt)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Software 3D floor rendering optimization (second attempt)
ffloorclip-2
into
next
Overview
0
Commits
2
Pipelines
0
Changes
3
Merged
Lactozilla
requested to merge
ffloorclip-2
into
next
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
This is the same as
!1119 (closed)
, but simplier.
3
0
Merge request reports
Compare
version 1
version 1
c5a3a61b
4 years ago
next (base)
and
latest version
latest version
0021a9ae
2 commits,
4 years ago
version 1
c5a3a61b
1 commit,
4 years ago
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/r_segs.c
+
3
−
3
Options
@@ -1309,13 +1309,13 @@ static void R_RenderSegLoop (void)
R_ExpandPlaneY
(
floorplane
,
rw_x
,
top
,
bottom
);
}
rw_floormarked
=
false
;
rw_ceilingmarked
=
false
;
if
(
numffloors
)
{
INT16
fftop
,
ffbottom
;
rw_floormarked
=
false
;
rw_ceilingmarked
=
false
;
firstseg
->
frontscale
[
rw_x
]
=
frontscale
[
rw_x
];
top
=
ceilingclip
[
rw_x
]
+
1
;
// PRBoom
bottom
=
floorclip
[
rw_x
]
-
1
;
// PRBoom
Loading