hyporo-cpp/source/hyporo/gpu/opengl/texture.hpp

25 lines
253 B
C++
Raw Normal View History

2022-10-03 18:51:34 +05:00
#pragma once
#include "../texture.hpp"
namespace hpr::gpu::opengl
{
class Texture : public gpu::Texture
{
friend class Device;
protected:
unsigned int p_textureIndex;
public:
Texture();
~Texture();
};
}