forked from Moddable-OpenSource/moddable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpiuTexture.c
157 lines (144 loc) · 4.24 KB
/
piuTexture.c
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
* Copyright (c) 2016-2017 Moddable Tech, Inc.
*
* This file is part of the Moddable SDK Runtime.
*
* The Moddable SDK Runtime is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Moddable SDK Runtime is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the Moddable SDK Runtime. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "piuMC.h"
static void PiuTextureMark(xsMachine* the, void* it, xsMarkRoot markRoot);
static const xsHostHooks PiuTextureHoks ICACHE_RODATA_ATTR = {
PiuTextureDelete,
PiuTextureMark,
NULL
};
void PiuTextureDelete(void* it)
{
}
void PiuTextureMark(xsMachine* the, void* it, xsMarkRoot markRoot)
{
}
#ifdef piuGPU
int piuTextureSize = 0;
int PiuTextureComputeBitmapSize(PocoBitmap bits)
{
int result;
if ((kCommodettoBitmapGray16 | kCommodettoBitmapPacked) == bits->format)
result = (bits->width * bits->height) >> 1;
else
result = ((CommodettoBitmapGetDepth(bits->format) * bits->width) >> 3) * bits->height;
result = (result + 3) & ~3;
return result;
}
int PiuTextureComputeSize(PiuTexture* self)
{
int result = 0;
if ((*self)->flags & piuTextureAlpha) {
result += PiuTextureComputeBitmapSize(&((*self)->bits));
}
if ((*self)->flags & piuTextureColor) {
result += PiuTextureComputeBitmapSize(&((*self)->mask));
}
return result;
}
void PiuTextureBind(PiuTexture* self, PiuApplication* application, PiuView* view)
{
if ((*self)->usage == 0) {
piuTextureSize += PiuTextureComputeSize(self);
#ifdef mxInstrument
modInstrumentationMax(PiuCommandListUsed, piuTextureSize);
#endif
if ((*self)->flags & piuTextureAlpha) {
PocoBitmapAdd((*view)->poco, &((*self)->mask), PiuViewReceiver, view);
}
if ((*self)->flags & piuTextureColor) {
PocoBitmapAdd((*view)->poco, &((*self)->bits), PiuViewReceiver, view);
}
}
(*self)->usage++;
}
void PiuTextureUnbind(PiuTexture* self, PiuApplication* application, PiuView* view)
{
(*self)->usage--;
if ((*self)->usage == 0) {
piuTextureSize -= PiuTextureComputeSize(self);
#ifdef mxInstrument
modInstrumentationMax(PiuCommandListUsed, piuTextureSize);
#endif
if ((*self)->flags & piuTextureAlpha) {
PocoBitmapRemove((*view)->poco, (*self)->mask.id, PiuViewReceiver, view);
}
if ((*self)->flags & piuTextureColor) {
PocoBitmapRemove((*view)->poco, (*self)->bits.id, PiuViewReceiver, view);
}
}
}
#endif
void PiuTexture_create(xsMachine* the)
{
PiuTextureRecord record;
PiuTexture self = &record;
c_memset(self, 0, sizeof(record));
self->reference = xsToReference(xsThis);
if (xsTest(xsArg(0))) {
CommodettoBitmap cb = xsGetHostChunk(xsArg(0));
self->flags |= piuTextureAlpha;
self->mask.width = cb->w;
self->mask.height = cb->h;
self->mask.format = cb->format;
#if COMMODETTO_BITMAP_ID
self->mask.id = cb->id;
#endif
self->mask.pixels = cb->bits.data;
#if (90 == kPocoRotation) || (270 == kPocoRotation)
self->width = cb->h;
self->height = cb->w;
#else
self->width = cb->w;
self->height = cb->h;
#endif
}
if (xsTest(xsArg(1))) {
CommodettoBitmap cb = xsGetHostChunk(xsArg(1));
self->flags |= piuTextureColor;
self->bits.width = cb->w;
self->bits.height = cb->h;
self->bits.format = cb->format;
#if COMMODETTO_BITMAP_ID
self->bits.id = cb->id;
#endif
self->bits.pixels = cb->bits.data;
#if (90 == kPocoRotation) || (270 == kPocoRotation)
self->width = cb->h;
self->height = cb->w;
#else
self->width = cb->w;
self->height = cb->h;
#endif
}
xsSetHostChunk(xsThis, self, sizeof(record));
xsSetHostHooks(xsThis, &PiuTextureHoks);
xsResult = xsThis;
}
void PiuTexture_get_width(xsMachine* the)
{
PiuTexture* self = PIU(Texture, xsThis);
xsResult = xsPiuDimension((*self)->width);
}
void PiuTexture_get_height(xsMachine* the)
{
PiuTexture* self = PIU(Texture, xsThis);
xsResult = xsPiuDimension((*self)->height);
}