nvidia-texture-tools/src/nvimage/Image.h

81 lines
1.3 KiB
C
Raw Normal View History

2007-04-17 08:49:19 +00:00
// This code is in the public domain -- castanyo@yahoo.es
#ifndef NV_IMAGE_IMAGE_H
#define NV_IMAGE_IMAGE_H
#include <nvcore/Debug.h>
#include <nvimage/nvimage.h>
namespace nv
{
class Color32;
/// 32 bit RGBA image.
class NVIMAGE_CLASS Image
2007-04-17 08:49:19 +00:00
{
NV_FORBID_COPY(Image);
2007-04-17 08:49:19 +00:00
public:
enum Format
{
Format_RGB,
Format_ARGB,
};
Image();
~Image();
2007-04-17 08:49:19 +00:00
void allocate(uint w, uint h);
bool load(const char * name);
2007-04-17 08:49:19 +00:00
void wrap(void * data, uint w, uint h);
void unwrap();
2007-04-17 08:49:19 +00:00
uint width() const;
uint height() const;
2007-04-17 08:49:19 +00:00
const Color32 * scanline(uint h) const;
Color32 * scanline(uint h);
2007-04-17 08:49:19 +00:00
const Color32 * pixels() const;
Color32 * pixels();
2007-04-17 08:49:19 +00:00
const Color32 & pixel(uint idx) const;
Color32 & pixel(uint idx);
2007-04-17 08:49:19 +00:00
const Color32 & pixel(uint x, uint y) const;
Color32 & pixel(uint x, uint y);
Format format() const;
void setFormat(Format f);
2007-04-17 08:49:19 +00:00
void fill(Color32 c);
2007-04-17 08:49:19 +00:00
private:
void free();
private:
uint m_width;
uint m_height;
Format m_format;
Color32 * m_data;
};
inline const Color32 & Image::pixel(uint x, uint y) const
{
nvDebugCheck(x < width() && y < height());
return pixel(y * width() + x);
}
inline Color32 & Image::pixel(uint x, uint y)
{
nvDebugCheck(x < width() && y < height());
return pixel(y * width() + x);
}
} // nv namespace
#endif // NV_IMAGE_IMAGE_H