blob: bdf21a38a040d2255f0dc3282a99aa0ebfddd12a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#ifndef APISURFACE_H
#define APISURFACE_H
#include <QImage>
#include <QSize>
#include <QString>
class ApiSurface
{
public:
ApiSurface();
QSize size() const;
void setSize(const QSize &size);
int numChannels() const;
void setNumChannels(int numChannels);
void contentsFromBase64(const QByteArray &base64);
QImage image() const;
QImage thumb() const;
private:
QSize m_size;
int m_numChannels;
QImage m_image;
QImage m_thumb;
};
class ApiTexture : public ApiSurface
{
public:
ApiTexture();
QString label() const;
void setLabel(const QString &str);
private:
QString m_label;
};
class ApiFramebuffer : public ApiSurface
{
public:
ApiFramebuffer();
QString type() const;
void setType(const QString &str);
private:
QString m_type;
};
#endif
|