| 11 | rgba_colour_t backgroundColor = {64, 128, 128, 255}; |
| 12 | |
| 13 | unsigned int operator-(const timespec& t1, const timespec& t2){ |
| 14 | return (t1.tv_sec - t2.tv_sec) * 1000000000 + (t1.tv_nsec - t2.tv_nsec); |
| 15 | } |
| 16 | |
| 17 | CompositorInstance::CompositorInstance(WMInstance* wm){ |
| 18 | this->wm = wm; |
nothing calls this directly
no outgoing calls
no test coverage detected