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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#include <DTXImage.h>
#include <irrlicht.h>
void *DTXImage::lock()
{
return nullptr;
}
void DTXImage::unlock()
{
}
const irr::core::dimension2d<irr::u32> &DTXImage::getDimension() const
{
static const irr::core::dimension2d<irr::u32> d;
return d;
}
irr::u32 DTXImage::getBitsPerPixel() const
{
return 0;
}
irr::u32 DTXImage::getBytesPerPixel() const
{
return 0;
}
irr::u32 DTXImage::getImageDataSizeInBytes() const
{
return 0;
}
irr::u32 DTXImage::getImageDataSizeInPixels() const
{
return 0;
}
irr::video::SColor DTXImage::getPixel(irr::u32 x, irr::u32 y) const
{
return irr::video::SColor();
}
void DTXImage::setPixel(irr::u32 x, irr::u32 y, const irr::video::SColor &color,
bool blend)
{
}
irr::video::ECOLOR_FORMAT DTXImage::getColorFormat() const
{
return irr::video::ECOLOR_FORMAT::ECF_UNKNOWN;
}
irr::u32 DTXImage::getRedMask() const
{
return 0;
}
irr::u32 DTXImage::getGreenMask() const
{
return 0;
}
irr::u32 DTXImage::getBlueMask() const
{
return 0;
}
irr::u32 DTXImage::getAlphaMask() const
{
return 0;
}
irr::u32 DTXImage::getPitch() const
{
return 0;
}
void DTXImage::copyToScaling(void *target, irr::u32 width, irr::u32 height,
irr::video::ECOLOR_FORMAT format,
irr::u32 pitch)
{
}
void DTXImage::copyToScaling(IImage *target)
{
}
void DTXImage::copyTo(IImage *target, const irr::core::position2d<irr::s32> &)
{
}
void DTXImage::copyTo(IImage *target,
const irr::core::position2d<irr::s32> &pos,
const irr::core::rect<irr::s32> &sourceRect,
const irr::core::rect<irr::s32> *clipRect)
{
}
void DTXImage::copyToWithAlpha(IImage* target,
const irr::core::position2d<irr::s32> &pos,
const irr::core::rect<irr::s32> &sourceRect,
const irr::video::SColor &color,
const irr::core::rect<irr::s32>* clipRect)
{
}
void DTXImage::copyToScalingBoxFilter(IImage* target, irr::s32 bias,
bool blend)
{
}
void DTXImage::fill(const irr::video::SColor &color)
{
}
|