OpenGL: Random stuff I forgot
This commit is contained in:
@@ -24,6 +24,11 @@ namespace Nz::GL
|
||||
Texture(Texture&&) noexcept = default;
|
||||
~Texture() = default;
|
||||
|
||||
inline void SetParameterf(GLenum pname, GLfloat param);
|
||||
inline void SetParameteri(GLenum pname, GLint param);
|
||||
inline void SetParameterfv(GLenum pname, const GLfloat* param);
|
||||
inline void SetParameteriv(GLenum pname, const GLint* param);
|
||||
|
||||
inline void TexImage2D(GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border);
|
||||
inline void TexImage2D(GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void* data);
|
||||
inline void TexSubImage2D(GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void* data);
|
||||
|
||||
Reference in New Issue
Block a user