2016-03-21 04:10:14 +00:00
|
|
|
#ifndef _TEXTURE_H_
|
|
|
|
#define _TEXTURE_H_
|
|
|
|
|
|
|
|
#include "Types.h"
|
|
|
|
#include "Pkgs/glew.h" //arg
|
|
|
|
|
|
|
|
namespace New3D {
|
|
|
|
|
|
|
|
class Texture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Texture();
|
|
|
|
~Texture();
|
|
|
|
|
|
|
|
UINT32 UploadTexture (const UINT16* src, UINT8* scratch, int format, bool mirrorU, bool mirrorV, int x, int y, int width, int height);
|
|
|
|
void DeleteTexture ();
|
|
|
|
void BindTexture ();
|
|
|
|
void GetCoordinates (UINT16 uIn, UINT16 vIn, float uvScale, float& uOut, float& vOut);
|
|
|
|
void GetDetails (int& x, int&y, int& width, int& height, int& format);
|
|
|
|
void SetWrapMode (bool mirrorU, bool mirrorV);
|
2016-06-10 11:29:20 +00:00
|
|
|
bool Compare (int x, int y, int width, int height, int format);
|
2016-03-21 04:10:14 +00:00
|
|
|
|
2016-03-26 22:44:26 +00:00
|
|
|
static void GetCoordinates(int width, int height, UINT16 uIn, UINT16 vIn, float uvScale, float& uOut, float& vOut);
|
|
|
|
|
2016-03-21 04:10:14 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
int m_x;
|
|
|
|
int m_y;
|
|
|
|
int m_width;
|
|
|
|
int m_height;
|
|
|
|
int m_format;
|
|
|
|
bool m_mirrorU;
|
|
|
|
bool m_mirrorV;
|
|
|
|
GLuint m_textureID;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // New3D
|
|
|
|
|
|
|
|
#endif
|