mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed a renderer heisenbug that caused multiple single-pixel alignment issues.
This commit is contained in:
parent
c4e787427e
commit
63e7b58ec0
|
@ -278,7 +278,6 @@ void RendererOpenGL::destroyContext()
|
|||
void RendererOpenGL::setMatrix(const glm::mat4& matrix)
|
||||
{
|
||||
mTrans = matrix;
|
||||
mTrans[3] = glm::round(mTrans[3]);
|
||||
mTrans = getProjectionMatrix() * mTrans;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue