mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-21 20:39:57 +01:00
Remove near clamping (useless)
This commit is contained in:
parent
246cb2a8cc
commit
8d710ee3c7
1 changed files with 0 additions and 18 deletions
18
small3dlib.h
18
small3dlib.h
|
@ -128,15 +128,6 @@
|
|||
#define S3L_RESOLUTION_Y 480 ///< Redefine to your screen y resolution.
|
||||
#endif
|
||||
|
||||
#ifndef S3L_NEAR_CLAMPING
|
||||
#define S3L_NEAR_CLAMPING 0 /**< Whether to use depth clamping for the near
|
||||
plane. Only works with S3L_COMPUTE_DEPTH
|
||||
enabled! This may be a bit slower, but can
|
||||
prevent errorneous rendering in specific
|
||||
cases and is closer to traditional 3D
|
||||
engines. */
|
||||
#endif
|
||||
|
||||
#ifndef S3L_STRICT_NEAR_CULLING
|
||||
#define S3L_STRICT_NEAR_CULLING 1 /**< If on, any triangle that only partially
|
||||
intersects the near plane will be culled.
|
||||
|
@ -145,10 +136,6 @@
|
|||
the camera disappear. */
|
||||
#endif
|
||||
|
||||
#if S3L_STRICT_NEAR_CULLING
|
||||
#define S3L_NEAR_CLAMPING 0 // This would be useless.
|
||||
#endif
|
||||
|
||||
#ifndef S3L_FLAT
|
||||
#define S3L_FLAT 0 /**< If on, disables computation of per-pixel
|
||||
values such as barycentric coordinates and
|
||||
|
@ -1605,11 +1592,6 @@ void S3L_drawTriangle(
|
|||
p.depth = S3L_getFastLerpValue(depthFLS);
|
||||
S3L_stepFastLerp(depthFLS);
|
||||
#endif
|
||||
|
||||
#if S3L_NEAR_CLAMPING
|
||||
if (p.depth < S3L_NEAR)
|
||||
continue;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if S3L_Z_BUFFER
|
||||
|
|
Loading…
Reference in a new issue