UltimateZoneBuilder/Source/Native/Texture.h

39 lines
588 B
C
Raw Normal View History

#pragma once
enum class CubeMapFace : int
{
PositiveX,
PositiveY,
PositiveZ,
NegativeX,
NegativeY,
NegativeZ
};
class Texture
{
public:
Texture();
2019-08-14 11:51:05 +00:00
~Texture();
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();
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;
};