├── .gitignore ├── App.xaml ├── App.xaml.cs ├── Controls ├── GLScreensaverControl.xaml ├── GLScreensaverControl.xaml.cs ├── PreviewControl.xaml └── PreviewControl.xaml.cs ├── Data ├── Database.cs ├── ImageSource.cs └── Shader.cs ├── GLow Screensaver.csproj ├── GLow Screensaver.sln ├── Images ├── Logos │ └── Opengl-logo.svg ├── favorite.png ├── glow.ico ├── icon-final.png ├── icon.png ├── locked.png ├── monitor-dark.png ├── monitor-light.png ├── new.png └── opengl.png ├── Inno setup └── GLow.iss ├── LICENSE ├── PrivateData.Designer.cs ├── Properties ├── AssemblyInfo.cs ├── WPFAssemblyInfo.cs └── app.manifest ├── README.md ├── SQLite.cs ├── SQLiteAsync.cs ├── Site └── Images │ ├── code-window.png │ ├── conf-screen.png │ ├── create-the-file.png │ └── create-the-key.png ├── Themes └── Default.xaml ├── Utils ├── ObservableHashSet.cs ├── User32.cs └── WindowStyles.cs ├── Windows ├── Converters │ ├── DescriptionConverter.cs │ ├── FavoriteConverter.cs │ ├── NewShaderConverter.cs │ ├── ReadOnlyConverter.cs │ └── ShaderLanguageTechnologyConverter.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── SettingsDialog.xaml ├── SettingsDialog.xaml.cs ├── ShaderDownloadDialog.xaml ├── ShaderDownloadDialog.xaml.cs ├── ShaderEditWindow.xaml ├── ShaderEditWindow.xaml.cs ├── ShadertoyJson │ ├── ListAll.cs │ ├── RenderPassV1.cs │ ├── ShaderInfoV1.cs │ ├── ShaderRoot.cs │ └── ShaderV1.cs └── WindowBase.cs ├── _config.yml ├── app.config ├── glow.ico ├── packages.config └── xshd └── GLSL.xshd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Controls/GLScreensaverControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Controls/GLScreensaverControl.xaml -------------------------------------------------------------------------------- /Controls/GLScreensaverControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Controls/GLScreensaverControl.xaml.cs -------------------------------------------------------------------------------- /Controls/PreviewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Controls/PreviewControl.xaml -------------------------------------------------------------------------------- /Controls/PreviewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Controls/PreviewControl.xaml.cs -------------------------------------------------------------------------------- /Data/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Data/Database.cs -------------------------------------------------------------------------------- /Data/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Data/ImageSource.cs -------------------------------------------------------------------------------- /Data/Shader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Data/Shader.cs -------------------------------------------------------------------------------- /GLow Screensaver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/GLow Screensaver.csproj -------------------------------------------------------------------------------- /GLow Screensaver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/GLow Screensaver.sln -------------------------------------------------------------------------------- /Images/Logos/Opengl-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/Logos/Opengl-logo.svg -------------------------------------------------------------------------------- /Images/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/favorite.png -------------------------------------------------------------------------------- /Images/glow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/glow.ico -------------------------------------------------------------------------------- /Images/icon-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/icon-final.png -------------------------------------------------------------------------------- /Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/icon.png -------------------------------------------------------------------------------- /Images/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/locked.png -------------------------------------------------------------------------------- /Images/monitor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/monitor-dark.png -------------------------------------------------------------------------------- /Images/monitor-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/monitor-light.png -------------------------------------------------------------------------------- /Images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/new.png -------------------------------------------------------------------------------- /Images/opengl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Images/opengl.png -------------------------------------------------------------------------------- /Inno setup/GLow.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Inno setup/GLow.iss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/LICENSE -------------------------------------------------------------------------------- /PrivateData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/PrivateData.Designer.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/WPFAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Properties/WPFAssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Properties/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/README.md -------------------------------------------------------------------------------- /SQLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/SQLite.cs -------------------------------------------------------------------------------- /SQLiteAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/SQLiteAsync.cs -------------------------------------------------------------------------------- /Site/Images/code-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Site/Images/code-window.png -------------------------------------------------------------------------------- /Site/Images/conf-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Site/Images/conf-screen.png -------------------------------------------------------------------------------- /Site/Images/create-the-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Site/Images/create-the-file.png -------------------------------------------------------------------------------- /Site/Images/create-the-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Site/Images/create-the-key.png -------------------------------------------------------------------------------- /Themes/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Themes/Default.xaml -------------------------------------------------------------------------------- /Utils/ObservableHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Utils/ObservableHashSet.cs -------------------------------------------------------------------------------- /Utils/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Utils/User32.cs -------------------------------------------------------------------------------- /Utils/WindowStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Utils/WindowStyles.cs -------------------------------------------------------------------------------- /Windows/Converters/DescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/Converters/DescriptionConverter.cs -------------------------------------------------------------------------------- /Windows/Converters/FavoriteConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/Converters/FavoriteConverter.cs -------------------------------------------------------------------------------- /Windows/Converters/NewShaderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/Converters/NewShaderConverter.cs -------------------------------------------------------------------------------- /Windows/Converters/ReadOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/Converters/ReadOnlyConverter.cs -------------------------------------------------------------------------------- /Windows/Converters/ShaderLanguageTechnologyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/Converters/ShaderLanguageTechnologyConverter.cs -------------------------------------------------------------------------------- /Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/SettingsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/SettingsDialog.xaml -------------------------------------------------------------------------------- /Windows/SettingsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/SettingsDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/ShaderDownloadDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShaderDownloadDialog.xaml -------------------------------------------------------------------------------- /Windows/ShaderDownloadDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShaderDownloadDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/ShaderEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShaderEditWindow.xaml -------------------------------------------------------------------------------- /Windows/ShaderEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShaderEditWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/ShadertoyJson/ListAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShadertoyJson/ListAll.cs -------------------------------------------------------------------------------- /Windows/ShadertoyJson/RenderPassV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShadertoyJson/RenderPassV1.cs -------------------------------------------------------------------------------- /Windows/ShadertoyJson/ShaderInfoV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShadertoyJson/ShaderInfoV1.cs -------------------------------------------------------------------------------- /Windows/ShadertoyJson/ShaderRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShadertoyJson/ShaderRoot.cs -------------------------------------------------------------------------------- /Windows/ShadertoyJson/ShaderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/ShadertoyJson/ShaderV1.cs -------------------------------------------------------------------------------- /Windows/WindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/Windows/WindowBase.cs -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/_config.yml -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/app.config -------------------------------------------------------------------------------- /glow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/glow.ico -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/packages.config -------------------------------------------------------------------------------- /xshd/GLSL.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefv/GLow/HEAD/xshd/GLSL.xshd --------------------------------------------------------------------------------