├── .gitignore ├── OpenGLdotNET_example1 ├── App.config ├── OpenGLdotNET_example1.csproj ├── Program.cs └── packages.config ├── OpenGLdotNET_examples.sln ├── OpenTK.WinForms ├── DummyGLFWGraphicsContext.cs ├── GLControl.cs ├── GLControlDesignTimeRenderer.cs ├── GLControlSettings.cs ├── GLFWNative.cs ├── INativeInput.cs ├── NativeInput.cs ├── OpenTK.WinForms.csproj └── Win32.cs ├── OpenTK_WPF_example_1 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── OpenTK_model.cs ├── OpenTK_WPF_example_1.csproj ├── View │ ├── ViewOpenTK.xaml │ └── ViewOpenTK.xaml.cs └── ViewModel │ └── OpenTK_viewmodel.cs ├── OpenTK_assimp_example_1 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── OpenTK_AssimpModel.cs ├── OpenTK_assimp_example_1.csproj ├── OpenTK_assimp_example_1.csproj.user ├── Properties │ └── launchSettings.json ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── OpenTK_ViewModel.cs ├── OpenTK_compute_conestepmap ├── AppWindow.cs ├── OpenTK_compute_conestepmap.csproj ├── OpenTK_example_2.csproj └── Program.cs ├── OpenTK_compute_raytracing ├── App.config ├── App.xaml ├── App.xaml.cs ├── OpenTK_compute_raytracing.csproj ├── ViewModel │ └── RayTracing_ViewModel.cs ├── model │ └── RayTracing_Model.cs └── view │ ├── RayTracing_View.xaml │ └── RayTracing_View.xaml.cs ├── OpenTK_controls_firstperson ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── Scene_Model.cs ├── OpenTK_controls_firstperson.csproj ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── OpenTK_ViewModel.cs ├── OpenTK_controls_orbit ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── Orbit_Model.cs ├── OpenTK_controls_orbit.csproj ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── Orbit_ViewModel.cs ├── OpenTK_example_1 ├── Game.cs ├── OpenTK_example_1.csproj └── Program.cs ├── OpenTK_example_2 ├── AppWindow.cs ├── OpenTK_example_2.csproj └── Program.cs ├── OpenTK_example_3 ├── DrawTexture.cs ├── OpenTK_example_3.csproj ├── Program.cs └── Resource │ └── background.jpg ├── OpenTK_example_4 ├── ComputeBarnsleyFern.cs ├── OpenTK_example_4.csproj └── Program.cs ├── OpenTK_example_5 ├── DrawText.cs ├── FreeTypeFont.cs ├── OpenTK_example_5.csproj ├── Program.cs ├── Resource │ └── FreeSans.ttf └── freetype6.dll ├── OpenTK_example_6 ├── Game.cs ├── OpenTK_example_6.csproj └── Program.cs ├── OpenTK_examples.sln ├── OpenTK_hello_triangle ├── HelloTriangle.cs ├── OpenTK_hello_triangle.csproj └── Program.cs ├── OpenTK_hello_triangle_WPF ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Model │ └── HelloTriangle.cs ├── OpenTK_hello_triangle_WPF.csproj ├── OpenTK_hello_triangle_WPF.csproj.user ├── View │ ├── HelloTriangleView.xaml │ └── HelloTriangleView.xaml.cs └── ViewModel │ └── HelloTriangleViewModel.cs ├── OpenTK_hello_triangle_windows_forms ├── HelloTriangle.cs ├── HelloTriangleForm.Designer.cs ├── HelloTriangleForm.cs ├── HelloTriangleForm.resx ├── OpenTK_hello_triangle_windows_forms.csproj ├── OpenTK_hello_triangle_windows_forms.csproj.user └── Program.cs ├── OpenTK_library ├── Controls │ ├── ControlsTypes.cs │ ├── DummyControls.cs │ ├── FirstPersonControls.cs │ ├── ModelSpinningControls.cs │ └── NavigationControls.cs ├── Generator │ └── TextureGenerator.cs ├── Mathematics │ ├── AABB.cs │ ├── Operations.cs │ └── StereoscopicPerspective.cs ├── Mesh │ ├── Cube.cs │ └── TrefoilKnot.cs ├── MeshBuilder │ └── TrefoilKnotBuilder.cs ├── OpenGL │ ├── IDebugCallback.cs │ ├── IExtensionInformation.cs │ ├── IFramebuffer.cs │ ├── IOpenGLObjectFactory.cs │ ├── IPixelPackBuffer.cs │ ├── IProgram.cs │ ├── IRenderbuffer.cs │ ├── IStorageBuffer.cs │ ├── ITexture.cs │ ├── IVersionInformation.cs │ ├── IVertexArrayObject.cs │ ├── Object.cs │ ├── OpenGL4 │ │ ├── DebugCallback4.cs │ │ ├── ExtensionInformation4.cs │ │ ├── Framebuffer4.cs │ │ ├── Framebuffer4DSA.cs │ │ ├── OpenGLObjectFactory4.cs │ │ ├── PixelPackBuffer4.cs │ │ ├── PixelPackBuffer4DSA.cs │ │ ├── Program4.cs │ │ ├── Renderbuffer4.cs │ │ ├── Renderbuffer4DSA.cs │ │ ├── StorageBuffer4.cs │ │ ├── StorageBuffer4DSA.cs │ │ ├── Texture4.cs │ │ ├── Texture4Immutable.cs │ │ ├── VersionInformation4.cs │ │ ├── VertexArrayObject4.cs │ │ └── VertexArrayObject4SeparateFormat.cs │ └── ShaderType.cs ├── OpenTK_library.csproj ├── Scene │ └── Model.cs └── Type │ └── MVP.cs ├── OpenTK_library_assimp ├── Builder │ └── AssimpModel.cs └── OpenTK_library_assimp.csproj ├── OpenTK_libray_viewmodel ├── Control │ └── GLWpfControlViewModel.cs ├── Model │ └── ModelType.cs └── OpenTK_libray_viewmodel.csproj ├── OpenTK_lines ├── Lines2D.cs ├── OpenTK_lines.csproj └── Program.cs ├── OpenTK_parallax_cone_step_mapping ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── OpenTK_Model.cs ├── OpenTK_parallax_cone_step_mapping.csproj ├── OpenTK_parallax_cone_step_mapping.csproj.user ├── Properties │ └── launchSettings.json ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── OpenTK_ViewModel.cs ├── OpenTK_parallax_generalized_displacement_mapping ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── OpenTK_Model.cs ├── OpenTK_parallax_generalized_displacement_mapping.csproj ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── OpenTK_ViewModel.cs ├── OpenTK_parallax_relief_mapping ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── OpenTK_Model.cs ├── OpenTK_parallax_relief_mapping.csproj ├── Resource │ ├── toy_box_disp.png │ ├── toy_box_normal.png │ └── woodtiles.jpg ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── OpenTK_ViewModel.cs ├── OpenTK_rubiks ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ ├── Rubiks.cs │ ├── RubiksControls.cs │ └── RubiksMouseControlsProxy.cs ├── OpenTK_rubiks.csproj ├── VIew │ ├── Rubiks_View.xaml │ └── Rubiks_View.xaml.cs └── ViewModel │ └── Rubiks_ViewModel.cs ├── OpenTK_stereoscopic_example_1 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Model │ └── OpenTK_StereoscopicModel.cs ├── OpenTK_stereoscopic_example_1.csproj ├── OpenTK_stereoscopic_example_1.csproj.user ├── Properties │ └── launchSettings.json ├── View │ ├── OpenTK_View.xaml │ └── OpenTK_View.xaml.cs └── ViewModel │ └── OpenTK_ViewModel.cs ├── WpfViewModelModule ├── ComboBoxViewModel.cs └── WpfViewModelModule.csproj ├── _config.yml ├── doc └── image │ ├── OpenTK_WPF_example_1.png │ ├── OpenTK_assimp_example_1.png │ ├── OpenTK_compute_raytracing.png │ ├── OpenTK_controls_firstperson.png │ ├── OpenTK_controls_orbit.png │ ├── OpenTK_example_1.png │ ├── OpenTK_example_2.png │ ├── OpenTK_example_3.png │ ├── OpenTK_example_4.png │ ├── OpenTK_example_5.png │ ├── OpenTK_generalized_displacement_mapping.png │ ├── OpenTK_lines.png │ ├── OpenTK_parallax_cone_step_mapping.png │ ├── OpenTK_parallax_relief_mapping.png │ ├── OpenTK_rubiks.png │ ├── OpenTK_stereoscopic_example_1.png │ ├── OpenTK_stereoscopic_example_1_glass.png │ └── glass_red_blue.png ├── readme.md ├── resource ├── font │ ├── 37043_SYMBOL.ttf │ ├── Allura-Regular.otf │ ├── FreeSans.ttf │ ├── GrandHotel-Regular.otf │ ├── GreatVibes-Regular.otf │ ├── Pacifico.ttf │ ├── pixlim_2.ttf │ └── symbol.ttf ├── model │ └── wavefront │ │ ├── .gitignore │ │ ├── ateneav.obj │ │ ├── buddha.obj │ │ ├── bunny.obj │ │ ├── cube_simple.obj │ │ ├── dragon.obj │ │ ├── elephav.obj │ │ ├── monkey.obj │ │ ├── pig_triangulated.obj │ │ ├── sphere.obj │ │ └── venusv.obj └── texture │ ├── background.jpg │ ├── toy_box_disp.png │ ├── toy_box_normal.png │ └── woodtiles.jpg └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/.gitignore -------------------------------------------------------------------------------- /OpenGLdotNET_example1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenGLdotNET_example1/App.config -------------------------------------------------------------------------------- /OpenGLdotNET_example1/OpenGLdotNET_example1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenGLdotNET_example1/OpenGLdotNET_example1.csproj -------------------------------------------------------------------------------- /OpenGLdotNET_example1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenGLdotNET_example1/Program.cs -------------------------------------------------------------------------------- /OpenGLdotNET_example1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenGLdotNET_example1/packages.config -------------------------------------------------------------------------------- /OpenGLdotNET_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenGLdotNET_examples.sln -------------------------------------------------------------------------------- /OpenTK.WinForms/DummyGLFWGraphicsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/DummyGLFWGraphicsContext.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/GLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/GLControl.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/GLControlDesignTimeRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/GLControlDesignTimeRenderer.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/GLControlSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/GLControlSettings.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/GLFWNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/GLFWNative.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/INativeInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/INativeInput.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/NativeInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/NativeInput.cs -------------------------------------------------------------------------------- /OpenTK.WinForms/OpenTK.WinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/OpenTK.WinForms.csproj -------------------------------------------------------------------------------- /OpenTK.WinForms/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK.WinForms/Win32.cs -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/App.config -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/App.xaml -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/Model/OpenTK_model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/Model/OpenTK_model.cs -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/OpenTK_WPF_example_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/OpenTK_WPF_example_1.csproj -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/View/ViewOpenTK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/View/ViewOpenTK.xaml -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/View/ViewOpenTK.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/View/ViewOpenTK.xaml.cs -------------------------------------------------------------------------------- /OpenTK_WPF_example_1/ViewModel/OpenTK_viewmodel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_WPF_example_1/ViewModel/OpenTK_viewmodel.cs -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/App.config -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/App.xaml -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/Model/OpenTK_AssimpModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/Model/OpenTK_AssimpModel.cs -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/OpenTK_assimp_example_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/OpenTK_assimp_example_1.csproj -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/OpenTK_assimp_example_1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/OpenTK_assimp_example_1.csproj.user -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/Properties/launchSettings.json -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_assimp_example_1/ViewModel/OpenTK_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_assimp_example_1/ViewModel/OpenTK_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_compute_conestepmap/AppWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_conestepmap/AppWindow.cs -------------------------------------------------------------------------------- /OpenTK_compute_conestepmap/OpenTK_compute_conestepmap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_conestepmap/OpenTK_compute_conestepmap.csproj -------------------------------------------------------------------------------- /OpenTK_compute_conestepmap/OpenTK_example_2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_conestepmap/OpenTK_example_2.csproj -------------------------------------------------------------------------------- /OpenTK_compute_conestepmap/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_conestepmap/Program.cs -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/App.config -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/App.xaml -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/OpenTK_compute_raytracing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/OpenTK_compute_raytracing.csproj -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/ViewModel/RayTracing_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/ViewModel/RayTracing_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/model/RayTracing_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/model/RayTracing_Model.cs -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/view/RayTracing_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/view/RayTracing_View.xaml -------------------------------------------------------------------------------- /OpenTK_compute_raytracing/view/RayTracing_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_compute_raytracing/view/RayTracing_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/App.config -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/App.xaml -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/Model/Scene_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/Model/Scene_Model.cs -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/OpenTK_controls_firstperson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/OpenTK_controls_firstperson.csproj -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_controls_firstperson/ViewModel/OpenTK_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_firstperson/ViewModel/OpenTK_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_controls_orbit/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/App.config -------------------------------------------------------------------------------- /OpenTK_controls_orbit/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/App.xaml -------------------------------------------------------------------------------- /OpenTK_controls_orbit/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_controls_orbit/Model/Orbit_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/Model/Orbit_Model.cs -------------------------------------------------------------------------------- /OpenTK_controls_orbit/OpenTK_controls_orbit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/OpenTK_controls_orbit.csproj -------------------------------------------------------------------------------- /OpenTK_controls_orbit/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_controls_orbit/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_controls_orbit/ViewModel/Orbit_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_controls_orbit/ViewModel/Orbit_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_example_1/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_1/Game.cs -------------------------------------------------------------------------------- /OpenTK_example_1/OpenTK_example_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_1/OpenTK_example_1.csproj -------------------------------------------------------------------------------- /OpenTK_example_1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_1/Program.cs -------------------------------------------------------------------------------- /OpenTK_example_2/AppWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_2/AppWindow.cs -------------------------------------------------------------------------------- /OpenTK_example_2/OpenTK_example_2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_2/OpenTK_example_2.csproj -------------------------------------------------------------------------------- /OpenTK_example_2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_2/Program.cs -------------------------------------------------------------------------------- /OpenTK_example_3/DrawTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_3/DrawTexture.cs -------------------------------------------------------------------------------- /OpenTK_example_3/OpenTK_example_3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_3/OpenTK_example_3.csproj -------------------------------------------------------------------------------- /OpenTK_example_3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_3/Program.cs -------------------------------------------------------------------------------- /OpenTK_example_3/Resource/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_3/Resource/background.jpg -------------------------------------------------------------------------------- /OpenTK_example_4/ComputeBarnsleyFern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_4/ComputeBarnsleyFern.cs -------------------------------------------------------------------------------- /OpenTK_example_4/OpenTK_example_4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_4/OpenTK_example_4.csproj -------------------------------------------------------------------------------- /OpenTK_example_4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_4/Program.cs -------------------------------------------------------------------------------- /OpenTK_example_5/DrawText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_5/DrawText.cs -------------------------------------------------------------------------------- /OpenTK_example_5/FreeTypeFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_5/FreeTypeFont.cs -------------------------------------------------------------------------------- /OpenTK_example_5/OpenTK_example_5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_5/OpenTK_example_5.csproj -------------------------------------------------------------------------------- /OpenTK_example_5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_5/Program.cs -------------------------------------------------------------------------------- /OpenTK_example_5/Resource/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_5/Resource/FreeSans.ttf -------------------------------------------------------------------------------- /OpenTK_example_5/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_5/freetype6.dll -------------------------------------------------------------------------------- /OpenTK_example_6/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_6/Game.cs -------------------------------------------------------------------------------- /OpenTK_example_6/OpenTK_example_6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_6/OpenTK_example_6.csproj -------------------------------------------------------------------------------- /OpenTK_example_6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_example_6/Program.cs -------------------------------------------------------------------------------- /OpenTK_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_examples.sln -------------------------------------------------------------------------------- /OpenTK_hello_triangle/HelloTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle/HelloTriangle.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle/OpenTK_hello_triangle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle/OpenTK_hello_triangle.csproj -------------------------------------------------------------------------------- /OpenTK_hello_triangle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle/Program.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/App.xaml -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/Model/HelloTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/Model/HelloTriangle.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/OpenTK_hello_triangle_WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/OpenTK_hello_triangle_WPF.csproj -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/OpenTK_hello_triangle_WPF.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/OpenTK_hello_triangle_WPF.csproj.user -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/View/HelloTriangleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/View/HelloTriangleView.xaml -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/View/HelloTriangleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/View/HelloTriangleView.xaml.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_WPF/ViewModel/HelloTriangleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_WPF/ViewModel/HelloTriangleViewModel.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/HelloTriangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/HelloTriangle.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/HelloTriangleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/HelloTriangleForm.Designer.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/HelloTriangleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/HelloTriangleForm.cs -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/HelloTriangleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/HelloTriangleForm.resx -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/OpenTK_hello_triangle_windows_forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/OpenTK_hello_triangle_windows_forms.csproj -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/OpenTK_hello_triangle_windows_forms.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/OpenTK_hello_triangle_windows_forms.csproj.user -------------------------------------------------------------------------------- /OpenTK_hello_triangle_windows_forms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_hello_triangle_windows_forms/Program.cs -------------------------------------------------------------------------------- /OpenTK_library/Controls/ControlsTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Controls/ControlsTypes.cs -------------------------------------------------------------------------------- /OpenTK_library/Controls/DummyControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Controls/DummyControls.cs -------------------------------------------------------------------------------- /OpenTK_library/Controls/FirstPersonControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Controls/FirstPersonControls.cs -------------------------------------------------------------------------------- /OpenTK_library/Controls/ModelSpinningControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Controls/ModelSpinningControls.cs -------------------------------------------------------------------------------- /OpenTK_library/Controls/NavigationControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Controls/NavigationControls.cs -------------------------------------------------------------------------------- /OpenTK_library/Generator/TextureGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Generator/TextureGenerator.cs -------------------------------------------------------------------------------- /OpenTK_library/Mathematics/AABB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Mathematics/AABB.cs -------------------------------------------------------------------------------- /OpenTK_library/Mathematics/Operations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Mathematics/Operations.cs -------------------------------------------------------------------------------- /OpenTK_library/Mathematics/StereoscopicPerspective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Mathematics/StereoscopicPerspective.cs -------------------------------------------------------------------------------- /OpenTK_library/Mesh/Cube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Mesh/Cube.cs -------------------------------------------------------------------------------- /OpenTK_library/Mesh/TrefoilKnot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Mesh/TrefoilKnot.cs -------------------------------------------------------------------------------- /OpenTK_library/MeshBuilder/TrefoilKnotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/MeshBuilder/TrefoilKnotBuilder.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IDebugCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IDebugCallback.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IExtensionInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IExtensionInformation.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IFramebuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IFramebuffer.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IOpenGLObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IOpenGLObjectFactory.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IPixelPackBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IPixelPackBuffer.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IProgram.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IRenderbuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IRenderbuffer.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IStorageBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IStorageBuffer.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/ITexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/ITexture.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IVersionInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IVersionInformation.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/IVertexArrayObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/IVertexArrayObject.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/Object.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/DebugCallback4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/DebugCallback4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/ExtensionInformation4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/ExtensionInformation4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Framebuffer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Framebuffer4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Framebuffer4DSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Framebuffer4DSA.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/OpenGLObjectFactory4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/OpenGLObjectFactory4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/PixelPackBuffer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/PixelPackBuffer4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/PixelPackBuffer4DSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/PixelPackBuffer4DSA.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Program4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Program4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Renderbuffer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Renderbuffer4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Renderbuffer4DSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Renderbuffer4DSA.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/StorageBuffer4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/StorageBuffer4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/StorageBuffer4DSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/StorageBuffer4DSA.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Texture4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Texture4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/Texture4Immutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/Texture4Immutable.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/VersionInformation4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/VersionInformation4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/VertexArrayObject4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/VertexArrayObject4.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/OpenGL4/VertexArrayObject4SeparateFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/OpenGL4/VertexArrayObject4SeparateFormat.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenGL/ShaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenGL/ShaderType.cs -------------------------------------------------------------------------------- /OpenTK_library/OpenTK_library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/OpenTK_library.csproj -------------------------------------------------------------------------------- /OpenTK_library/Scene/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Scene/Model.cs -------------------------------------------------------------------------------- /OpenTK_library/Type/MVP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library/Type/MVP.cs -------------------------------------------------------------------------------- /OpenTK_library_assimp/Builder/AssimpModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library_assimp/Builder/AssimpModel.cs -------------------------------------------------------------------------------- /OpenTK_library_assimp/OpenTK_library_assimp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_library_assimp/OpenTK_library_assimp.csproj -------------------------------------------------------------------------------- /OpenTK_libray_viewmodel/Control/GLWpfControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_libray_viewmodel/Control/GLWpfControlViewModel.cs -------------------------------------------------------------------------------- /OpenTK_libray_viewmodel/Model/ModelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_libray_viewmodel/Model/ModelType.cs -------------------------------------------------------------------------------- /OpenTK_libray_viewmodel/OpenTK_libray_viewmodel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_libray_viewmodel/OpenTK_libray_viewmodel.csproj -------------------------------------------------------------------------------- /OpenTK_lines/Lines2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_lines/Lines2D.cs -------------------------------------------------------------------------------- /OpenTK_lines/OpenTK_lines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_lines/OpenTK_lines.csproj -------------------------------------------------------------------------------- /OpenTK_lines/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_lines/Program.cs -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/App.config -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/App.xaml -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/Model/OpenTK_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/Model/OpenTK_Model.cs -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/OpenTK_parallax_cone_step_mapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/OpenTK_parallax_cone_step_mapping.csproj -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/OpenTK_parallax_cone_step_mapping.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/OpenTK_parallax_cone_step_mapping.csproj.user -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/Properties/launchSettings.json -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_parallax_cone_step_mapping/ViewModel/OpenTK_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_cone_step_mapping/ViewModel/OpenTK_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/App.config -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/App.xaml -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/Model/OpenTK_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/Model/OpenTK_Model.cs -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/OpenTK_parallax_generalized_displacement_mapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/OpenTK_parallax_generalized_displacement_mapping.csproj -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_parallax_generalized_displacement_mapping/ViewModel/OpenTK_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_generalized_displacement_mapping/ViewModel/OpenTK_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/App.config -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/App.xaml -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/Model/OpenTK_Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/Model/OpenTK_Model.cs -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/OpenTK_parallax_relief_mapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/OpenTK_parallax_relief_mapping.csproj -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/Resource/toy_box_disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/Resource/toy_box_disp.png -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/Resource/toy_box_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/Resource/toy_box_normal.png -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/Resource/woodtiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/Resource/woodtiles.jpg -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_parallax_relief_mapping/ViewModel/OpenTK_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_parallax_relief_mapping/ViewModel/OpenTK_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_rubiks/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/App.config -------------------------------------------------------------------------------- /OpenTK_rubiks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/App.xaml -------------------------------------------------------------------------------- /OpenTK_rubiks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_rubiks/Model/Rubiks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/Model/Rubiks.cs -------------------------------------------------------------------------------- /OpenTK_rubiks/Model/RubiksControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/Model/RubiksControls.cs -------------------------------------------------------------------------------- /OpenTK_rubiks/Model/RubiksMouseControlsProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/Model/RubiksMouseControlsProxy.cs -------------------------------------------------------------------------------- /OpenTK_rubiks/OpenTK_rubiks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/OpenTK_rubiks.csproj -------------------------------------------------------------------------------- /OpenTK_rubiks/VIew/Rubiks_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/VIew/Rubiks_View.xaml -------------------------------------------------------------------------------- /OpenTK_rubiks/VIew/Rubiks_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/VIew/Rubiks_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_rubiks/ViewModel/Rubiks_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_rubiks/ViewModel/Rubiks_ViewModel.cs -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/App.config -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/App.xaml -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/App.xaml.cs -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/Model/OpenTK_StereoscopicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/Model/OpenTK_StereoscopicModel.cs -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/OpenTK_stereoscopic_example_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/OpenTK_stereoscopic_example_1.csproj -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/OpenTK_stereoscopic_example_1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/OpenTK_stereoscopic_example_1.csproj.user -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/Properties/launchSettings.json -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/View/OpenTK_View.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/View/OpenTK_View.xaml -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/View/OpenTK_View.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/View/OpenTK_View.xaml.cs -------------------------------------------------------------------------------- /OpenTK_stereoscopic_example_1/ViewModel/OpenTK_ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/OpenTK_stereoscopic_example_1/ViewModel/OpenTK_ViewModel.cs -------------------------------------------------------------------------------- /WpfViewModelModule/ComboBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/WpfViewModelModule/ComboBoxViewModel.cs -------------------------------------------------------------------------------- /WpfViewModelModule/WpfViewModelModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/WpfViewModelModule/WpfViewModelModule.csproj -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/_config.yml -------------------------------------------------------------------------------- /doc/image/OpenTK_WPF_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_WPF_example_1.png -------------------------------------------------------------------------------- /doc/image/OpenTK_assimp_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_assimp_example_1.png -------------------------------------------------------------------------------- /doc/image/OpenTK_compute_raytracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_compute_raytracing.png -------------------------------------------------------------------------------- /doc/image/OpenTK_controls_firstperson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_controls_firstperson.png -------------------------------------------------------------------------------- /doc/image/OpenTK_controls_orbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_controls_orbit.png -------------------------------------------------------------------------------- /doc/image/OpenTK_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_example_1.png -------------------------------------------------------------------------------- /doc/image/OpenTK_example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_example_2.png -------------------------------------------------------------------------------- /doc/image/OpenTK_example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_example_3.png -------------------------------------------------------------------------------- /doc/image/OpenTK_example_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_example_4.png -------------------------------------------------------------------------------- /doc/image/OpenTK_example_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_example_5.png -------------------------------------------------------------------------------- /doc/image/OpenTK_generalized_displacement_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_generalized_displacement_mapping.png -------------------------------------------------------------------------------- /doc/image/OpenTK_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_lines.png -------------------------------------------------------------------------------- /doc/image/OpenTK_parallax_cone_step_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_parallax_cone_step_mapping.png -------------------------------------------------------------------------------- /doc/image/OpenTK_parallax_relief_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_parallax_relief_mapping.png -------------------------------------------------------------------------------- /doc/image/OpenTK_rubiks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_rubiks.png -------------------------------------------------------------------------------- /doc/image/OpenTK_stereoscopic_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_stereoscopic_example_1.png -------------------------------------------------------------------------------- /doc/image/OpenTK_stereoscopic_example_1_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/OpenTK_stereoscopic_example_1_glass.png -------------------------------------------------------------------------------- /doc/image/glass_red_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/doc/image/glass_red_blue.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/readme.md -------------------------------------------------------------------------------- /resource/font/37043_SYMBOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/37043_SYMBOL.ttf -------------------------------------------------------------------------------- /resource/font/Allura-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/Allura-Regular.otf -------------------------------------------------------------------------------- /resource/font/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/FreeSans.ttf -------------------------------------------------------------------------------- /resource/font/GrandHotel-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/GrandHotel-Regular.otf -------------------------------------------------------------------------------- /resource/font/GreatVibes-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/GreatVibes-Regular.otf -------------------------------------------------------------------------------- /resource/font/Pacifico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/Pacifico.ttf -------------------------------------------------------------------------------- /resource/font/pixlim_2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/pixlim_2.ttf -------------------------------------------------------------------------------- /resource/font/symbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/font/symbol.ttf -------------------------------------------------------------------------------- /resource/model/wavefront/.gitignore: -------------------------------------------------------------------------------- 1 | !*.obj -------------------------------------------------------------------------------- /resource/model/wavefront/ateneav.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/ateneav.obj -------------------------------------------------------------------------------- /resource/model/wavefront/buddha.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/buddha.obj -------------------------------------------------------------------------------- /resource/model/wavefront/bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/bunny.obj -------------------------------------------------------------------------------- /resource/model/wavefront/cube_simple.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/cube_simple.obj -------------------------------------------------------------------------------- /resource/model/wavefront/dragon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/dragon.obj -------------------------------------------------------------------------------- /resource/model/wavefront/elephav.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/elephav.obj -------------------------------------------------------------------------------- /resource/model/wavefront/monkey.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/monkey.obj -------------------------------------------------------------------------------- /resource/model/wavefront/pig_triangulated.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/pig_triangulated.obj -------------------------------------------------------------------------------- /resource/model/wavefront/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/sphere.obj -------------------------------------------------------------------------------- /resource/model/wavefront/venusv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/model/wavefront/venusv.obj -------------------------------------------------------------------------------- /resource/texture/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/texture/background.jpg -------------------------------------------------------------------------------- /resource/texture/toy_box_disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/texture/toy_box_disp.png -------------------------------------------------------------------------------- /resource/texture/toy_box_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/texture/toy_box_normal.png -------------------------------------------------------------------------------- /resource/texture/woodtiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/resource/texture/woodtiles.jpg -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rabbid76/c_sharp_opengl/HEAD/todo.md --------------------------------------------------------------------------------