PLAYGROUND3D: Added polygon depth offset test

This commit is contained in:
Paweł Kołodziejski 2021-10-26 22:02:39 +02:00
parent 7ff4a7032f
commit e7ef9718a6
No known key found for this signature in database
GPG key ID: 0BDADC9E74440FF7
9 changed files with 107 additions and 5 deletions

View file

@ -96,6 +96,10 @@ void ShaderRenderer::drawCube(const Math::Vector3d &pos, const Math::Vector3d &r
glDrawArrays(GL_TRIANGLE_STRIP, 20, 4);
}
void ShaderRenderer::drawPolyOffsetTest(const Math::Vector3d &pos, const Math::Vector3d &roll) {
error("Polygon offset test not implemented yet");
}
} // End of namespace Playground3d
#endif