├── .gitignore ├── NIS ├── NIS_Config.h ├── NIS_Main.glsl ├── NIS_Main.hlsl └── NIS_Scaler.h ├── README.md ├── docs ├── NIS Developer Localization Strings - 081622.zip ├── NIS_SDK_Programming_Guide.pdf ├── RTX UI Developer Guidelines Chinese Version.pdf └── RTX UI Developer Guidelines.pdf ├── licence.txt ├── samples ├── CMakeLists.txt ├── DX11 │ ├── CMakeLists.txt │ ├── include │ │ ├── AppRenderer.h │ │ ├── BilinearUpscale.h │ │ ├── DXUtilities.h │ │ ├── DeviceResources.h │ │ ├── NVScaler.h │ │ ├── NVSharpen.h │ │ └── UIRenderer.h │ └── src │ │ ├── AppRenderer.cpp │ │ ├── BilinearUpscale.cpp │ │ ├── DeviceResources.cpp │ │ ├── NVScaler.cpp │ │ ├── NVSharpen.cpp │ │ ├── Sample.cpp │ │ ├── UIRenderer.cpp │ │ └── dpi.manifest ├── DX12 │ ├── CMakeLists.txt │ ├── include │ │ ├── AppRenderer.h │ │ ├── BilinearUpscale.h │ │ ├── DXUtilities.h │ │ ├── DeviceResources.h │ │ ├── NVScaler.h │ │ ├── NVSharpen.h │ │ ├── UIRenderer.h │ │ └── d3dx12.h │ └── src │ │ ├── AppRenderer.cpp │ │ ├── BilinearUpscale.cpp │ │ ├── DeviceResources.cpp │ │ ├── NVScaler.cpp │ │ ├── NVSharpen.cpp │ │ ├── Sample.cpp │ │ ├── UIRenderer.cpp │ │ ├── bilinearUpscale.hlsl │ │ └── dpi.manifest ├── NV12 │ ├── CMakeLists.txt │ ├── include │ │ ├── AppRenderer.h │ │ ├── BilinearUpscale.h │ │ ├── DXUtilities.h │ │ ├── DeviceResources.h │ │ ├── NVScaler.h │ │ ├── NVSharpen.h │ │ └── UIRenderer.h │ └── src │ │ ├── AppRenderer.cpp │ │ ├── BilinearUpscale.cpp │ │ ├── DeviceResources.cpp │ │ ├── NVScaler.cpp │ │ ├── NVSharpen.cpp │ │ ├── Sample.cpp │ │ ├── UIRenderer.cpp │ │ └── dpi.manifest ├── Streamline │ ├── CMakeLists.txt │ ├── include │ │ ├── AppRenderer.h │ │ ├── BilinearUpscale.h │ │ ├── DXUtilities.h │ │ ├── DeviceResources.h │ │ ├── SLWrapper.h │ │ ├── UIRenderer.h │ │ └── d3dx12.h │ └── src │ │ ├── AppRenderer.cpp │ │ ├── BilinearUpscale.cpp │ │ ├── DeviceResources.cpp │ │ ├── SLWrapper.cpp │ │ ├── Sample.cpp │ │ ├── UIRenderer.cpp │ │ ├── bilinearUpscale.hlsl │ │ └── dpi.manifest ├── VK │ ├── CMakeLists.txt │ ├── include │ │ ├── AppRenderer.h │ │ ├── DeviceResources.h │ │ ├── NVScaler.h │ │ ├── NVSharpen.h │ │ ├── UIRenderer.h │ │ └── VKUtilities.h │ └── src │ │ ├── AppRenderer.cpp │ │ ├── DeviceResources.cpp │ │ ├── NVScaler.cpp │ │ ├── NVSharpen.cpp │ │ ├── Sample.cpp │ │ └── UIRenderer.cpp ├── common │ ├── Image.cpp │ ├── Image.h │ └── Utilities.h ├── media │ └── images │ │ ├── 1080.png │ │ └── 1440.png └── third_party │ ├── DXC │ ├── bin │ │ └── x64 │ │ │ ├── dxc.exe │ │ │ ├── dxcompiler.dll │ │ │ └── dxil.dll │ ├── inc │ │ ├── d3d12shader.h │ │ └── dxcapi.h │ ├── lib │ │ └── x64 │ │ │ └── dxcompiler.lib │ └── license.txt │ ├── glfw │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEpollShim.cmake │ │ │ ├── FindOSMesa.cmake │ │ │ ├── FindWaylandProtocols.cmake │ │ │ └── FindXKBCommon.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── CONTRIBUTORS.md │ ├── LICENSE.md │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── khrplatform.h │ │ │ ├── vk_platform.h │ │ │ └── vulkan.h │ │ ├── glad_gl.c │ │ ├── glad_vulkan.c │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── vs2008 │ │ │ └── stdint.h │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── osmesa_context.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ ├── imgui │ ├── LICENSE.txt │ ├── backends │ │ ├── imgui_impl_allegro5.cpp │ │ ├── imgui_impl_allegro5.h │ │ ├── imgui_impl_android.cpp │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_dx10.cpp │ │ ├── imgui_impl_dx10.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx12.cpp │ │ ├── imgui_impl_dx12.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_glut.cpp │ │ ├── imgui_impl_glut.h │ │ ├── imgui_impl_marmalade.cpp │ │ ├── imgui_impl_marmalade.h │ │ ├── imgui_impl_metal.h │ │ ├── imgui_impl_metal.mm │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_impl_osx.h │ │ ├── imgui_impl_osx.mm │ │ ├── imgui_impl_sdl.cpp │ │ ├── imgui_impl_sdl.h │ │ ├── imgui_impl_sdlrenderer.cpp │ │ ├── imgui_impl_sdlrenderer.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── imgui_impl_wgpu.cpp │ │ ├── imgui_impl_wgpu.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── vulkan │ │ │ ├── generate_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ └── glsl_shader.vert │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h │ ├── setup_streamline.bat │ ├── stb │ ├── LICENSE │ ├── README.md │ ├── data │ │ ├── atari_8bit_font_revised.png │ │ ├── easy_font_raw.png │ │ ├── herringbone │ │ │ ├── license.txt │ │ │ ├── template_caves_limit_connectivity.png │ │ │ ├── template_caves_tiny_corridors.png │ │ │ ├── template_corner_caves.png │ │ │ ├── template_horizontal_corridors_v1.png │ │ │ ├── template_horizontal_corridors_v2.png │ │ │ ├── template_horizontal_corridors_v3.png │ │ │ ├── template_limit_connectivity_fat.png │ │ │ ├── template_limited_connectivity.png │ │ │ ├── template_maze_2_wide.png │ │ │ ├── template_maze_plus_2_wide.png │ │ │ ├── template_open_areas.png │ │ │ ├── template_ref2_corner_caves.png │ │ │ ├── template_rooms_and_corridors.png │ │ │ ├── template_rooms_and_corridors_2_wide_diagonal_bias.png │ │ │ ├── template_rooms_limit_connectivity.png │ │ │ ├── template_round_rooms_diagonal_corridors.png │ │ │ ├── template_sean_dungeon.png │ │ │ ├── template_simple_caves_2_wide.png │ │ │ └── template_square_rooms_with_random_rects.png │ │ ├── map_01.png │ │ ├── map_02.png │ │ └── map_03.png │ ├── deprecated │ │ ├── rrsprintf.h │ │ ├── stb.h │ │ ├── stb_image.c │ │ ├── stretch_test.c │ │ ├── stretchy_buffer.h │ │ └── stretchy_buffer.txt │ ├── stb_c_lexer.h │ ├── stb_connected_components.h │ ├── stb_divide.h │ ├── stb_ds.h │ ├── stb_dxt.h │ ├── stb_easy_font.h │ ├── stb_herringbone_wang_tile.h │ ├── stb_hexwave.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ ├── stb_include.h │ ├── stb_leakcheck.h │ ├── stb_rect_pack.h │ ├── stb_sprintf.h │ ├── stb_textedit.h │ ├── stb_tilemap_editor.h │ ├── stb_truetype.h │ ├── stb_vorbis.c │ ├── stb_voxel_render.h │ └── tools │ │ ├── README.footer.md │ │ ├── README.header.md │ │ ├── README.list │ │ ├── build_matrix.c │ │ ├── easy_font_maker.c │ │ ├── make_readme.c │ │ ├── make_readme.dsp │ │ ├── mr.bat │ │ ├── trailing_whitespace.c │ │ ├── unicode.c │ │ └── unicode │ │ └── unicode.dsp │ └── tinyexr │ ├── README.md │ ├── asakusa.png │ ├── deps │ └── miniz │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── examples │ │ ├── example1.c │ │ ├── example2.c │ │ ├── example3.c │ │ ├── example4.c │ │ ├── example5.c │ │ └── example6.c │ │ ├── miniz.c │ │ ├── miniz.h │ │ └── readme.md │ ├── license.txt │ ├── test_tinyexr.cc │ ├── tinyexr.cc │ └── tinyexr.h └── third_party_licenses.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/.gitignore -------------------------------------------------------------------------------- /NIS/NIS_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/NIS/NIS_Config.h -------------------------------------------------------------------------------- /NIS/NIS_Main.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/NIS/NIS_Main.glsl -------------------------------------------------------------------------------- /NIS/NIS_Main.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/NIS/NIS_Main.hlsl -------------------------------------------------------------------------------- /NIS/NIS_Scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/NIS/NIS_Scaler.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/README.md -------------------------------------------------------------------------------- /docs/NIS Developer Localization Strings - 081622.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/docs/NIS Developer Localization Strings - 081622.zip -------------------------------------------------------------------------------- /docs/NIS_SDK_Programming_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/docs/NIS_SDK_Programming_Guide.pdf -------------------------------------------------------------------------------- /docs/RTX UI Developer Guidelines Chinese Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/docs/RTX UI Developer Guidelines Chinese Version.pdf -------------------------------------------------------------------------------- /docs/RTX UI Developer Guidelines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/docs/RTX UI Developer Guidelines.pdf -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/licence.txt -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/DX11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/CMakeLists.txt -------------------------------------------------------------------------------- /samples/DX11/include/AppRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/AppRenderer.h -------------------------------------------------------------------------------- /samples/DX11/include/BilinearUpscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/BilinearUpscale.h -------------------------------------------------------------------------------- /samples/DX11/include/DXUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/DXUtilities.h -------------------------------------------------------------------------------- /samples/DX11/include/DeviceResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/DeviceResources.h -------------------------------------------------------------------------------- /samples/DX11/include/NVScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/NVScaler.h -------------------------------------------------------------------------------- /samples/DX11/include/NVSharpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/NVSharpen.h -------------------------------------------------------------------------------- /samples/DX11/include/UIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/include/UIRenderer.h -------------------------------------------------------------------------------- /samples/DX11/src/AppRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/AppRenderer.cpp -------------------------------------------------------------------------------- /samples/DX11/src/BilinearUpscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/BilinearUpscale.cpp -------------------------------------------------------------------------------- /samples/DX11/src/DeviceResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/DeviceResources.cpp -------------------------------------------------------------------------------- /samples/DX11/src/NVScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/NVScaler.cpp -------------------------------------------------------------------------------- /samples/DX11/src/NVSharpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/NVSharpen.cpp -------------------------------------------------------------------------------- /samples/DX11/src/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/Sample.cpp -------------------------------------------------------------------------------- /samples/DX11/src/UIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/UIRenderer.cpp -------------------------------------------------------------------------------- /samples/DX11/src/dpi.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX11/src/dpi.manifest -------------------------------------------------------------------------------- /samples/DX12/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/CMakeLists.txt -------------------------------------------------------------------------------- /samples/DX12/include/AppRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/AppRenderer.h -------------------------------------------------------------------------------- /samples/DX12/include/BilinearUpscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/BilinearUpscale.h -------------------------------------------------------------------------------- /samples/DX12/include/DXUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/DXUtilities.h -------------------------------------------------------------------------------- /samples/DX12/include/DeviceResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/DeviceResources.h -------------------------------------------------------------------------------- /samples/DX12/include/NVScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/NVScaler.h -------------------------------------------------------------------------------- /samples/DX12/include/NVSharpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/NVSharpen.h -------------------------------------------------------------------------------- /samples/DX12/include/UIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/UIRenderer.h -------------------------------------------------------------------------------- /samples/DX12/include/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/include/d3dx12.h -------------------------------------------------------------------------------- /samples/DX12/src/AppRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/AppRenderer.cpp -------------------------------------------------------------------------------- /samples/DX12/src/BilinearUpscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/BilinearUpscale.cpp -------------------------------------------------------------------------------- /samples/DX12/src/DeviceResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/DeviceResources.cpp -------------------------------------------------------------------------------- /samples/DX12/src/NVScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/NVScaler.cpp -------------------------------------------------------------------------------- /samples/DX12/src/NVSharpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/NVSharpen.cpp -------------------------------------------------------------------------------- /samples/DX12/src/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/Sample.cpp -------------------------------------------------------------------------------- /samples/DX12/src/UIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/UIRenderer.cpp -------------------------------------------------------------------------------- /samples/DX12/src/bilinearUpscale.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/bilinearUpscale.hlsl -------------------------------------------------------------------------------- /samples/DX12/src/dpi.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/DX12/src/dpi.manifest -------------------------------------------------------------------------------- /samples/NV12/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/CMakeLists.txt -------------------------------------------------------------------------------- /samples/NV12/include/AppRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/AppRenderer.h -------------------------------------------------------------------------------- /samples/NV12/include/BilinearUpscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/BilinearUpscale.h -------------------------------------------------------------------------------- /samples/NV12/include/DXUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/DXUtilities.h -------------------------------------------------------------------------------- /samples/NV12/include/DeviceResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/DeviceResources.h -------------------------------------------------------------------------------- /samples/NV12/include/NVScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/NVScaler.h -------------------------------------------------------------------------------- /samples/NV12/include/NVSharpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/NVSharpen.h -------------------------------------------------------------------------------- /samples/NV12/include/UIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/include/UIRenderer.h -------------------------------------------------------------------------------- /samples/NV12/src/AppRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/AppRenderer.cpp -------------------------------------------------------------------------------- /samples/NV12/src/BilinearUpscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/BilinearUpscale.cpp -------------------------------------------------------------------------------- /samples/NV12/src/DeviceResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/DeviceResources.cpp -------------------------------------------------------------------------------- /samples/NV12/src/NVScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/NVScaler.cpp -------------------------------------------------------------------------------- /samples/NV12/src/NVSharpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/NVSharpen.cpp -------------------------------------------------------------------------------- /samples/NV12/src/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/Sample.cpp -------------------------------------------------------------------------------- /samples/NV12/src/UIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/UIRenderer.cpp -------------------------------------------------------------------------------- /samples/NV12/src/dpi.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/NV12/src/dpi.manifest -------------------------------------------------------------------------------- /samples/Streamline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/CMakeLists.txt -------------------------------------------------------------------------------- /samples/Streamline/include/AppRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/AppRenderer.h -------------------------------------------------------------------------------- /samples/Streamline/include/BilinearUpscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/BilinearUpscale.h -------------------------------------------------------------------------------- /samples/Streamline/include/DXUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/DXUtilities.h -------------------------------------------------------------------------------- /samples/Streamline/include/DeviceResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/DeviceResources.h -------------------------------------------------------------------------------- /samples/Streamline/include/SLWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/SLWrapper.h -------------------------------------------------------------------------------- /samples/Streamline/include/UIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/UIRenderer.h -------------------------------------------------------------------------------- /samples/Streamline/include/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/include/d3dx12.h -------------------------------------------------------------------------------- /samples/Streamline/src/AppRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/AppRenderer.cpp -------------------------------------------------------------------------------- /samples/Streamline/src/BilinearUpscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/BilinearUpscale.cpp -------------------------------------------------------------------------------- /samples/Streamline/src/DeviceResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/DeviceResources.cpp -------------------------------------------------------------------------------- /samples/Streamline/src/SLWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/SLWrapper.cpp -------------------------------------------------------------------------------- /samples/Streamline/src/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/Sample.cpp -------------------------------------------------------------------------------- /samples/Streamline/src/UIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/UIRenderer.cpp -------------------------------------------------------------------------------- /samples/Streamline/src/bilinearUpscale.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/bilinearUpscale.hlsl -------------------------------------------------------------------------------- /samples/Streamline/src/dpi.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/Streamline/src/dpi.manifest -------------------------------------------------------------------------------- /samples/VK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/CMakeLists.txt -------------------------------------------------------------------------------- /samples/VK/include/AppRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/include/AppRenderer.h -------------------------------------------------------------------------------- /samples/VK/include/DeviceResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/include/DeviceResources.h -------------------------------------------------------------------------------- /samples/VK/include/NVScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/include/NVScaler.h -------------------------------------------------------------------------------- /samples/VK/include/NVSharpen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/include/NVSharpen.h -------------------------------------------------------------------------------- /samples/VK/include/UIRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/include/UIRenderer.h -------------------------------------------------------------------------------- /samples/VK/include/VKUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/include/VKUtilities.h -------------------------------------------------------------------------------- /samples/VK/src/AppRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/src/AppRenderer.cpp -------------------------------------------------------------------------------- /samples/VK/src/DeviceResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/src/DeviceResources.cpp -------------------------------------------------------------------------------- /samples/VK/src/NVScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/src/NVScaler.cpp -------------------------------------------------------------------------------- /samples/VK/src/NVSharpen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/src/NVSharpen.cpp -------------------------------------------------------------------------------- /samples/VK/src/Sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/src/Sample.cpp -------------------------------------------------------------------------------- /samples/VK/src/UIRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/VK/src/UIRenderer.cpp -------------------------------------------------------------------------------- /samples/common/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/common/Image.cpp -------------------------------------------------------------------------------- /samples/common/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/common/Image.h -------------------------------------------------------------------------------- /samples/common/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/common/Utilities.h -------------------------------------------------------------------------------- /samples/media/images/1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/media/images/1080.png -------------------------------------------------------------------------------- /samples/media/images/1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/media/images/1440.png -------------------------------------------------------------------------------- /samples/third_party/DXC/bin/x64/dxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/bin/x64/dxc.exe -------------------------------------------------------------------------------- /samples/third_party/DXC/bin/x64/dxcompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/bin/x64/dxcompiler.dll -------------------------------------------------------------------------------- /samples/third_party/DXC/bin/x64/dxil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/bin/x64/dxil.dll -------------------------------------------------------------------------------- /samples/third_party/DXC/inc/d3d12shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/inc/d3d12shader.h -------------------------------------------------------------------------------- /samples/third_party/DXC/inc/dxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/inc/dxcapi.h -------------------------------------------------------------------------------- /samples/third_party/DXC/lib/x64/dxcompiler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/lib/x64/dxcompiler.lib -------------------------------------------------------------------------------- /samples/third_party/DXC/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/DXC/license.txt -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/modules/FindWaylandProtocols.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/modules/FindWaylandProtocols.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/modules/FindXKBCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/modules/FindXKBCommon.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /samples/third_party/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /samples/third_party/glfw/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/CONTRIBUTORS.md -------------------------------------------------------------------------------- /samples/third_party/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/LICENSE.md -------------------------------------------------------------------------------- /samples/third_party/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/README.md -------------------------------------------------------------------------------- /samples/third_party/glfw/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/getopt.c -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/getopt.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/glad/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/glad/khrplatform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/glad/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/glad/vk_platform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/glad_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/glad_gl.c -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/glad_vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/glad_vulkan.c -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/linmath.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /samples/third_party/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /samples/third_party/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /samples/third_party/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /samples/third_party/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/context.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/egl_context.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/egl_context.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/glfw3.pc.in -------------------------------------------------------------------------------- /samples/third_party/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /samples/third_party/glfw/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/glfw_config.h.in -------------------------------------------------------------------------------- /samples/third_party/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/glx_context.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/glx_context.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/init.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/input.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/internal.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/mappings.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /samples/third_party/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/monitor.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /samples/third_party/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/null_init.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/null_platform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/null_window.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/osmesa_context.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/posix_time.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/posix_time.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/vulkan.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_init.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_time.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/win32_window.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/window.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/wl_init.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/wl_window.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/x11_init.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /samples/third_party/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/x11_window.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /samples/third_party/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /samples/third_party/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/LICENSE.txt -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_marmalade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_marmalade.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_marmalade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_marmalade.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /samples/third_party/imgui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /samples/third_party/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imconfig.h -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui.h -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui_internal.h -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /samples/third_party/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /samples/third_party/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /samples/third_party/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /samples/third_party/setup_streamline.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/setup_streamline.bat -------------------------------------------------------------------------------- /samples/third_party/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/LICENSE -------------------------------------------------------------------------------- /samples/third_party/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/README.md -------------------------------------------------------------------------------- /samples/third_party/stb/data/atari_8bit_font_revised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/atari_8bit_font_revised.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/easy_font_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/easy_font_raw.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/license.txt -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_caves_limit_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_caves_limit_connectivity.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_caves_tiny_corridors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_caves_tiny_corridors.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_corner_caves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_corner_caves.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_horizontal_corridors_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_horizontal_corridors_v1.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_horizontal_corridors_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_horizontal_corridors_v2.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_horizontal_corridors_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_horizontal_corridors_v3.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_limit_connectivity_fat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_limit_connectivity_fat.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_limited_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_limited_connectivity.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_maze_2_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_maze_2_wide.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_maze_plus_2_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_maze_plus_2_wide.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_open_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_open_areas.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_ref2_corner_caves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_ref2_corner_caves.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_rooms_and_corridors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_rooms_and_corridors.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_rooms_and_corridors_2_wide_diagonal_bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_rooms_and_corridors_2_wide_diagonal_bias.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_rooms_limit_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_rooms_limit_connectivity.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_round_rooms_diagonal_corridors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_round_rooms_diagonal_corridors.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_sean_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_sean_dungeon.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_simple_caves_2_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_simple_caves_2_wide.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/herringbone/template_square_rooms_with_random_rects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/herringbone/template_square_rooms_with_random_rects.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/map_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/map_01.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/map_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/map_02.png -------------------------------------------------------------------------------- /samples/third_party/stb/data/map_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/data/map_03.png -------------------------------------------------------------------------------- /samples/third_party/stb/deprecated/rrsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/deprecated/rrsprintf.h -------------------------------------------------------------------------------- /samples/third_party/stb/deprecated/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/deprecated/stb.h -------------------------------------------------------------------------------- /samples/third_party/stb/deprecated/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/deprecated/stb_image.c -------------------------------------------------------------------------------- /samples/third_party/stb/deprecated/stretch_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/deprecated/stretch_test.c -------------------------------------------------------------------------------- /samples/third_party/stb/deprecated/stretchy_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/deprecated/stretchy_buffer.h -------------------------------------------------------------------------------- /samples/third_party/stb/deprecated/stretchy_buffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/deprecated/stretchy_buffer.txt -------------------------------------------------------------------------------- /samples/third_party/stb/stb_c_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_c_lexer.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_connected_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_connected_components.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_divide.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_ds.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_dxt.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_easy_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_easy_font.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_herringbone_wang_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_herringbone_wang_tile.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_hexwave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_hexwave.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_image.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_image_resize.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_image_write.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_include.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_leakcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_leakcheck.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_sprintf.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_textedit.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_tilemap_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_tilemap_editor.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_truetype.h -------------------------------------------------------------------------------- /samples/third_party/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_vorbis.c -------------------------------------------------------------------------------- /samples/third_party/stb/stb_voxel_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/stb_voxel_render.h -------------------------------------------------------------------------------- /samples/third_party/stb/tools/README.footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/README.footer.md -------------------------------------------------------------------------------- /samples/third_party/stb/tools/README.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/README.header.md -------------------------------------------------------------------------------- /samples/third_party/stb/tools/README.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/README.list -------------------------------------------------------------------------------- /samples/third_party/stb/tools/build_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/build_matrix.c -------------------------------------------------------------------------------- /samples/third_party/stb/tools/easy_font_maker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/easy_font_maker.c -------------------------------------------------------------------------------- /samples/third_party/stb/tools/make_readme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/make_readme.c -------------------------------------------------------------------------------- /samples/third_party/stb/tools/make_readme.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/make_readme.dsp -------------------------------------------------------------------------------- /samples/third_party/stb/tools/mr.bat: -------------------------------------------------------------------------------- 1 | debug\make_readme 2 | -------------------------------------------------------------------------------- /samples/third_party/stb/tools/trailing_whitespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/trailing_whitespace.c -------------------------------------------------------------------------------- /samples/third_party/stb/tools/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/unicode.c -------------------------------------------------------------------------------- /samples/third_party/stb/tools/unicode/unicode.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/stb/tools/unicode/unicode.dsp -------------------------------------------------------------------------------- /samples/third_party/tinyexr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/README.md -------------------------------------------------------------------------------- /samples/third_party/tinyexr/asakusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/asakusa.png -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/ChangeLog.md -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/LICENSE -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/examples/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/examples/example1.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/examples/example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/examples/example2.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/examples/example3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/examples/example3.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/examples/example4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/examples/example4.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/examples/example5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/examples/example5.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/examples/example6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/examples/example6.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/miniz.c -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/miniz.h -------------------------------------------------------------------------------- /samples/third_party/tinyexr/deps/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/deps/miniz/readme.md -------------------------------------------------------------------------------- /samples/third_party/tinyexr/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/license.txt -------------------------------------------------------------------------------- /samples/third_party/tinyexr/test_tinyexr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/test_tinyexr.cc -------------------------------------------------------------------------------- /samples/third_party/tinyexr/tinyexr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/tinyexr.cc -------------------------------------------------------------------------------- /samples/third_party/tinyexr/tinyexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/samples/third_party/tinyexr/tinyexr.h -------------------------------------------------------------------------------- /third_party_licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/NVIDIAImageScaling/HEAD/third_party_licenses.txt --------------------------------------------------------------------------------