diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-10-30 18:00:27 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-10-30 18:00:27 +0000 |
commit | 22e3e10ca41e179aeef06f22aca46905e31148f2 (patch) | |
tree | 7a3e8bc5f03871355cee541e44fa260c63e0ac65 /ui/icon.cpp | |
parent | Add frame and render buffers to glArrays (diff) | |
download | ilt-22e3e10ca41e179aeef06f22aca46905e31148f2.tar.bz2 ilt-22e3e10ca41e179aeef06f22aca46905e31148f2.tar.xz ilt-22e3e10ca41e179aeef06f22aca46905e31148f2.zip |
Setting texture unit when binding UI components
Diffstat (limited to 'ui/icon.cpp')
-rw-r--r-- | ui/icon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/icon.cpp b/ui/icon.cpp index 657e953..1caba68 100644 --- a/ui/icon.cpp +++ b/ui/icon.cpp @@ -25,5 +25,6 @@ Icon::Icon(const Image & tex) : size {tex.width, tex.height} void
Icon::Bind() const
{
+ glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, m_texture);
}
|