()
| 199 | } |
| 200 | |
| 201 | internal void Internal_OnDraw() |
| 202 | { |
| 203 | Matrix3x3.Scaling(DpiScale, out var scale); |
| 204 | Render2D.PushTransform(ref scale); |
| 205 | GUI.Draw(); |
| 206 | Render2D.PopTransform(); |
| 207 | } |
| 208 | |
| 209 | internal void Internal_OnResize(int width, int height) |
| 210 | { |
nothing calls this directly
no test coverage detected