2019-08-09 04:18:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-08-09 21:15:48 +00:00
|
|
|
enum class CubeMapFace : int
|
|
|
|
{
|
|
|
|
PositiveX,
|
|
|
|
PositiveY,
|
|
|
|
PositiveZ,
|
|
|
|
NegativeX,
|
|
|
|
NegativeY,
|
|
|
|
NegativeZ
|
|
|
|
};
|
2019-08-09 04:18:08 +00:00
|
|
|
|
|
|
|
class Texture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Texture();
|
2019-08-14 11:51:05 +00:00
|
|
|
~Texture();
|
2019-08-09 21:15:48 +00:00
|
|
|
|
|
|
|
void Set2DImage(int width, int height);
|
|
|
|
void SetCubeImage(int size);
|
|
|
|
|
|
|
|
void SetPixels(const void* data);
|
|
|
|
void SetCubePixels(CubeMapFace face, const void* data);
|
|
|
|
|
|
|
|
void* Lock();
|
|
|
|
void Unlock();
|
|
|
|
|
2019-08-14 11:51:05 +00:00
|
|
|
bool IsCubeTexture() const { return mCubeTexture; }
|
|
|
|
|
|
|
|
GLuint GetTexture();
|
|
|
|
|
2019-08-09 21:15:48 +00:00
|
|
|
private:
|
|
|
|
int mWidth = 0;
|
|
|
|
int mHeight = 0;
|
|
|
|
bool mCubeTexture = false;
|
|
|
|
std::map<int, std::vector<uint32_t>> mPixels;
|
2019-08-14 11:51:05 +00:00
|
|
|
GLuint mTexture = 0;
|
2019-08-09 04:18:08 +00:00
|
|
|
};
|