├── .gitignore ├── .gitmodules ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Loupe │ ├── LayoutDebug │ ├── DraggablePositionView.swift │ ├── VisualCornerInsetGuide.swift │ ├── VisualGridGuide.swift │ └── VisualLayoutGuide.swift │ └── RefreshDebug │ ├── ComputeDebugView.swift │ ├── DebugRender.swift │ ├── LocalRenderManager.swift │ ├── RMTDemoView.swift │ └── RenderCheck.swift └── assets ├── example.gif ├── icon.icon ├── Assets │ ├── grid.png │ ├── handle.svg │ ├── lens.png │ └── rects.svg └── icon.json └── icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Loupe/LayoutDebug/DraggablePositionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/LayoutDebug/DraggablePositionView.swift -------------------------------------------------------------------------------- /Sources/Loupe/LayoutDebug/VisualCornerInsetGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/LayoutDebug/VisualCornerInsetGuide.swift -------------------------------------------------------------------------------- /Sources/Loupe/LayoutDebug/VisualGridGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/LayoutDebug/VisualGridGuide.swift -------------------------------------------------------------------------------- /Sources/Loupe/LayoutDebug/VisualLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/LayoutDebug/VisualLayoutGuide.swift -------------------------------------------------------------------------------- /Sources/Loupe/RefreshDebug/ComputeDebugView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/RefreshDebug/ComputeDebugView.swift -------------------------------------------------------------------------------- /Sources/Loupe/RefreshDebug/DebugRender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/RefreshDebug/DebugRender.swift -------------------------------------------------------------------------------- /Sources/Loupe/RefreshDebug/LocalRenderManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/RefreshDebug/LocalRenderManager.swift -------------------------------------------------------------------------------- /Sources/Loupe/RefreshDebug/RMTDemoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/RefreshDebug/RMTDemoView.swift -------------------------------------------------------------------------------- /Sources/Loupe/RefreshDebug/RenderCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/Sources/Loupe/RefreshDebug/RenderCheck.swift -------------------------------------------------------------------------------- /assets/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/example.gif -------------------------------------------------------------------------------- /assets/icon.icon/Assets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/icon.icon/Assets/grid.png -------------------------------------------------------------------------------- /assets/icon.icon/Assets/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/icon.icon/Assets/handle.svg -------------------------------------------------------------------------------- /assets/icon.icon/Assets/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/icon.icon/Assets/lens.png -------------------------------------------------------------------------------- /assets/icon.icon/Assets/rects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/icon.icon/Assets/rects.svg -------------------------------------------------------------------------------- /assets/icon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/icon.icon/icon.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aeastr/Loupe/HEAD/assets/icon.png --------------------------------------------------------------------------------