b1e8889d96
They are not particularly packaged in Linux distros so we do not facilitate unbundling via SCons. There could be done if/when there is interest. Also s/pnm/pbm/, long-lived typo :)
23 lines
433 B
C++
23 lines
433 B
C++
#pragma once
|
|
|
|
#include "Bitmap.h"
|
|
#include "ColorRgba.h"
|
|
|
|
namespace Javelin {
|
|
|
|
class RgbBitmap : public Bitmap {
|
|
public:
|
|
RgbBitmap(int w, int h)
|
|
: Bitmap(w, h, 3) {
|
|
}
|
|
|
|
const ColorRgb<unsigned char> *GetData() const {
|
|
return reinterpret_cast<ColorRgb<unsigned char> *>(data);
|
|
}
|
|
|
|
ColorRgb<unsigned char> *GetData() {
|
|
return reinterpret_cast<ColorRgb<unsigned char> *>(data);
|
|
}
|
|
};
|
|
|
|
}
|