1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Fix typo in UTextureSize uniform.

Fixed work of 3 point filtering with GLES 2.0
This commit is contained in:
Sergey Lipskiy 2017-02-10 14:42:05 +07:00
parent 1f74b9c821
commit 66fed934c5

View File

@ -645,8 +645,8 @@ class UTextureSize : public UniformGroup
{
public:
UTextureSize(GLuint _program, bool _useT0, bool _useT1)
: m_useT0(m_useT0)
, m_useT1(m_useT1)
: m_useT0(_useT0)
, m_useT1(_useT1)
{
LocateUniform(uTextureSize[0]);
LocateUniform(uTextureSize[1]);