()
| 56 | } |
| 57 | |
| 58 | func (c TableColor) toLibui() *C.uiTableValue { |
| 59 | return C.uiNewTableValueColor(C.double(c.R), C.double(c.G), C.double(c.B), C.double(c.A)) |
| 60 | } |
| 61 | |
| 62 | func tableValueFromLibui(value *C.uiTableValue) TableValue { |
| 63 | if value == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected