mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
20 lines
298 B
C++
20 lines
298 B
C++
#pragma once
|
|
|
|
#include "Bitmap.h"
|
|
|
|
namespace Javelin {
|
|
|
|
class AlphaBitmap : public Bitmap {
|
|
public:
|
|
AlphaBitmap() {}
|
|
|
|
AlphaBitmap(int w, int h)
|
|
: Bitmap(w, h, 1) {
|
|
}
|
|
|
|
const unsigned char *GetData() const { return data; }
|
|
|
|
unsigned char *GetData() { return data; }
|
|
};
|
|
|
|
}
|