| 97 | } |
| 98 | |
| 99 | void PiuScreenBufferUnbind(void* it, PiuApplication* application, PiuView* view) |
| 100 | { |
| 101 | PiuScreenBuffer* self = it; |
| 102 | PiuContentUnbind(it, application, view); |
| 103 | if ((*self)->buffer) { |
| 104 | gbitmap_destroy((*self)->buffer); |
| 105 | (*self)->buffer = NULL; |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | void PiuScreenBuffer_create(xsMachine* the) |
| 110 | { |
nothing calls this directly
no test coverage detected