Win / KotakuInAction2
KotakuInAction2
Sign In
DEFAULT COMMUNITIES All General AskWin Funny Technology Animals Sports Gaming DIY Health Positive Privacy
Reason: None provided.

Topology doesn't really have a noticeable impact on performance outside of polycount. Everything is triangulated, vertex cache optimisation is applied, etc. Uneven edge lengths and tri sizes can cause issues since they don't play nice with the clustered nature of rasterization (overshading), or more recently, the spatial indices used in raytracing, but outside of that your GPU isn't too concerned with how your topology looks.

The issue, assuming you wanted it watertight (which you might not), would be the resulting normals/tangents. But let's face it, shading artifacts would be a kindness.

32 days ago
1 score
Reason: None provided.

Topology doesn't really have a noticeable impact on performance outside of polycount. Everything is triangulated, vertex cache optimisation is applied, etc. Micro-triangles can cause issues since they don't play nice with the clustered nature of rasterization, or more recently, the spatial indices used in raytracing, but outside of that your GPU isn't too concerned with how your topology looks.

The issue, assuming you wanted it watertight (which you might not), would be the resulting normals/tangents. But let's face it, shading artifacts would be a kindness.

32 days ago
1 score
Reason: Original

If you really wanted it watertight, you could collapse the edges and weld the vertices. Let's face it, shading artifacts would be an improvement.

32 days ago
1 score