summaryrefslogtreecommitdiff
path: root/thirdparty/pvrtccompressor/AlphaBitmap.h
blob: 57c6b026ea02b3865f693377ed0ac68c7c924011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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; }
};

}