OpenGLRenderer: Improve OpenGL wrapper

This commit is contained in:
Jérôme Leclercq
2021-09-21 16:34:34 +02:00
parent 250044b47a
commit 78358337f3
12 changed files with 57 additions and 18 deletions

View File

@@ -8,6 +8,11 @@
namespace Nz::GL
{
inline TextureTarget Texture::GetTarget() const
{
return m_target;
}
inline void Texture::SetParameterf(GLenum pname, GLfloat param)
{
assert(m_objectId);