15 lines
175 B
C++
15 lines
175 B
C++
|
|
#include "texture.hpp"
|
|
|
|
|
|
namespace hpr::gpu::opengl
|
|
{
|
|
|
|
Texture::Texture() :
|
|
gpu::Texture {DeviceAPI::OpenGL},
|
|
p_textureIndex {0}
|
|
{}
|
|
|
|
Texture::~Texture() = default;
|
|
|
|
} |