mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 19:32:49 +01:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
#pragma once
|
|
#ifndef _TEXTURE_ATLAS_HPP_
|
|
#define _TEXTURE_ATLAS_HPP_
|
|
#include <GL/glew.h>
|
|
|
|
class TextureAtlas
|
|
{
|
|
/**
|
|
* @brief width Width of the backing texture.
|
|
*/
|
|
size_t width;
|
|
/**
|
|
* @brief height Height of the backing texture.
|
|
*/
|
|
size_t height;
|
|
|
|
GLuint textureName;
|
|
|
|
size_t X; // X edge of latest texture.
|
|
size_t Y; // Y of current row.
|
|
size_t rowHeight; // Maximum texture height for the current row.
|
|
|
|
size_t textureCount;
|
|
|
|
bool finalized;
|
|
|
|
public:
|
|
|
|
TextureAtlas(size_t w, size_t h);
|
|
|
|
~TextureAtlas();
|
|
|
|
void packTexture(void* data, size_t w, size_t h, float& s, float& t, float& sX, float& sY);
|
|
|
|
void packTextureFormat(void* data, GLenum format, GLenum type, size_t w, size_t h, float& s, float& t, float& sX, float& sY);
|
|
|
|
/**
|
|
* @brief canPack Returns true if enough space remains in the atlas
|
|
* for the given texture sizes to be packed.
|
|
* @param w
|
|
* @param h
|
|
* @param n
|
|
* @return True on success, false on failure.
|
|
*/
|
|
bool canPack(size_t* w, size_t* h, size_t n) const;
|
|
|
|
size_t getTextureCount() const;
|
|
|
|
GLint getName() const;
|
|
|
|
bool isFinalized() const;
|
|
|
|
void finalize();
|
|
};
|
|
|
|
#endif
|