godot/thirdparty/pvrtccompressor/AlphaBitmap.h

19 lines
276 B
C++
Raw Normal View History

2015-04-07 02:48:20 +02:00
#pragma once
#include "Bitmap.h"
namespace Javelin {
class AlphaBitmap : public Bitmap {
public:
AlphaBitmap(int w, int h)
: Bitmap(w, h, 1) {
}
const unsigned char *GetData() const { return data; }
unsigned char *GetData() { return data; }
};
}