mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 13:55:38 +00:00
Both lemans24 and dirt devils are rendering some totally transparent objects as the first model in each viewport. The HW seems to skip these entirely, and including them breaks our near/far plane calculations leading to Z fighting.
This commit is contained in:
parent
e3255e45f3
commit
3dbfa73734
|
@ -926,6 +926,13 @@ void CNew3D::RenderViewport(UINT32 addr)
|
|||
|
||||
void CNew3D::CopyVertexData(const R3DPoly& r3dPoly, std::vector<FVertex>& vertexArray)
|
||||
{
|
||||
// both lemans 24 and dirt devils are rendering some totally transparent polys as the first object in each viewport
|
||||
// in dirt devils it's parallel to the camera so is completel invisible, but breaks our depth calculation
|
||||
// in lemans 24 its a sort of diamond shape, but never leaves a hole in the transparent geometry so must be being skipped by the h/w
|
||||
if (r3dPoly.faceColour[3] == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_numPolyVerts==4) {
|
||||
if (r3dPoly.number == 4) {
|
||||
vertexArray.emplace_back(r3dPoly, 0); // construct directly inside container without copy
|
||||
|
|
Loading…
Reference in a new issue