| 184 | } |
| 185 | |
| 186 | void PiuFontNew(xsMachine* the) |
| 187 | { |
| 188 | PiuFont* self; |
| 189 | xsResult = xsNewHostObject(NULL); |
| 190 | xsSetHostChunk(xsResult, NULL, sizeof(PiuFontRecord)); |
| 191 | self = PIU(Font, xsResult); |
| 192 | (*self)->reference = xsToReference(xsResult); |
| 193 | (*self)->the = the; |
| 194 | xsSetHostHooks(xsResult, &PiuFontHooks); |
| 195 | } |
| 196 | |
| 197 | #ifdef piuGPU |
| 198 | void PiuFontBind(PiuFont* self, PiuApplication* application, PiuView* view) |
no outgoing calls
no test coverage detected