16 lines
182 B
C++
16 lines
182 B
C++
|
|
#include "texture.hpp"
|
|
|
|
|
|
namespace hpr::gpu::opengl
|
|
{
|
|
|
|
Texture::Texture() :
|
|
gpu::Texture {DeviceAPI::OpenGL},
|
|
p_textureIndex {0}
|
|
{}
|
|
|
|
Texture::~Texture()
|
|
{}
|
|
|
|
} |