mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
25 lines
453 B
C++
25 lines
453 B
C++
#pragma once
|
|
|
|
#include "Bitmap.h"
|
|
#include "ColorRgba.h"
|
|
|
|
namespace Javelin {
|
|
|
|
class RgbBitmap : public Bitmap {
|
|
public:
|
|
RgbBitmap() {}
|
|
|
|
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);
|
|
}
|
|
};
|
|
|
|
}
|