| 48 | } |
| 49 | |
| 50 | void BoxBrush::SetSurfaces(const Array<BrushSurface>& value) |
| 51 | { |
| 52 | CHECK(value.Count() == ARRAY_COUNT(Surfaces)); |
| 53 | Platform::MemoryCopy(Surfaces, value.Get(), sizeof(Surfaces)); |
| 54 | OnBrushModified(); |
| 55 | } |
| 56 | |
| 57 | void BoxBrush::SetMode(BrushMode value) |
| 58 | { |
nothing calls this directly
no test coverage detected