mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-22 09:25:41 -04:00
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
#pragma once
|
|
#include "../types.h"
|
|
#include <glad.h>
|
|
|
|
namespace GL {
|
|
class Texture
|
|
{
|
|
public:
|
|
Texture();
|
|
Texture(Texture&& moved);
|
|
~Texture();
|
|
|
|
bool Create(u32 width, u32 height, GLenum internal_format, GLenum format, GLenum type, const void* data = nullptr,
|
|
bool linear_filter = false, bool wrap = false);
|
|
bool CreateFramebuffer();
|
|
|
|
void Destroy();
|
|
|
|
void SetLinearFilter(bool enabled);
|
|
|
|
bool IsValid() const { return m_id != 0; }
|
|
GLuint GetGLId() const { return m_id; }
|
|
u32 GetWidth() const { return m_width; }
|
|
u32 GetHeight() const { return m_height; }
|
|
|
|
GLuint GetGLFramebufferID() const { return m_fbo_id; }
|
|
|
|
void Bind();
|
|
void BindFramebuffer(GLenum target = GL_DRAW_FRAMEBUFFER);
|
|
|
|
static void Unbind();
|
|
|
|
Texture& operator=(const Texture& copy) = delete;
|
|
Texture& operator=(Texture&& moved);
|
|
|
|
// Helper which uses glGetTextureSubImage where available, otherwise a temporary FBO.
|
|
static void GetTextureSubImage(GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
|
|
GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type,
|
|
GLsizei bufSize, void* pixels);
|
|
|
|
private:
|
|
GLuint m_id = 0;
|
|
u32 m_width = 0;
|
|
u32 m_height = 0;
|
|
|
|
GLuint m_fbo_id = 0;
|
|
};
|
|
|
|
} // namespace GL
|