├── .gitattributes ├── LICENSE.txt ├── README.md ├── amd_sdk ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── build │ ├── AMD_SDK_2010.vcxproj │ ├── AMD_SDK_2010.vcxproj.filters │ ├── AMD_SDK_2012.vcxproj │ ├── AMD_SDK_2012.vcxproj.filters │ ├── AMD_SDK_2013.vcxproj │ ├── AMD_SDK_2013.vcxproj.filters │ ├── AMD_SDK_2015.vcxproj │ ├── AMD_SDK_2015.vcxproj.filters │ ├── AMD_SDK_Minimal_2010.vcxproj │ ├── AMD_SDK_Minimal_2010.vcxproj.filters │ ├── AMD_SDK_Minimal_2012.vcxproj │ ├── AMD_SDK_Minimal_2012.vcxproj.filters │ ├── AMD_SDK_Minimal_2013.vcxproj │ ├── AMD_SDK_Minimal_2013.vcxproj.filters │ ├── AMD_SDK_Minimal_2015.vcxproj │ ├── AMD_SDK_Minimal_2015.vcxproj.filters │ ├── Windows10SDKVS13_x64.props │ ├── Windows81SDKVS12_x64.props │ ├── Windows81SDK_x64.props │ └── Windows8SDK_x64.props ├── inc │ ├── AMD_SDK.h │ └── ShaderCacheSampleHelper.h ├── media │ ├── AMD.dds │ ├── AMD.ico │ └── amd_logo_black.png ├── premake │ ├── premake5.lua │ └── premake5_minimal.lua └── src │ ├── AMD_Mesh.cpp │ ├── AMD_Mesh.h │ ├── Geometry.cpp │ ├── Geometry.h │ ├── HUD.cpp │ ├── HUD.h │ ├── HelperFunctions.cpp │ ├── HelperFunctions.h │ ├── LineRender.cpp │ ├── LineRender.h │ ├── Magnify.cpp │ ├── Magnify.h │ ├── MagnifyTool.cpp │ ├── MagnifyTool.h │ ├── ShaderCache.cpp │ ├── ShaderCache.h │ ├── ShaderCacheSampleHelper.cpp │ ├── Shaders │ ├── Line.hlsl │ └── Sprite.hlsl │ ├── Sprite.cpp │ ├── Sprite.h │ ├── Timer.cpp │ ├── Timer.h │ ├── crc.cpp │ └── crc.h ├── dxut ├── .gitattributes ├── .gitignore ├── Core │ ├── DDSTextureLoader.cpp │ ├── DDSTextureLoader.h │ ├── DXUT.cpp │ ├── DXUT.h │ ├── DXUTDevice11.cpp │ ├── DXUTDevice11.h │ ├── DXUT_2010.vcxproj │ ├── DXUT_2012.vcxproj │ ├── DXUT_2013.vcxproj │ ├── DXUT_2015.vcxproj │ ├── DXUTmisc.cpp │ ├── DXUTmisc.h │ ├── ScreenGrab.cpp │ ├── ScreenGrab.h │ ├── WICTextureLoader.cpp │ ├── WICTextureLoader.h │ ├── Windows10SDKVS13_x64.props │ ├── Windows81SDKVS12_x64.props │ ├── Windows81SDK_x64.props │ ├── Windows8SDK_x64.props │ ├── dxerr.cpp │ ├── dxerr.h │ └── premake5.lua ├── MIT.txt ├── Optional │ ├── DXUTLockFreePipe.h │ ├── DXUTOpt_2010.vcxproj │ ├── DXUTOpt_2012.vcxproj │ ├── DXUTOpt_2013.vcxproj │ ├── DXUTOpt_2015.vcxproj │ ├── DXUTcamera.cpp │ ├── DXUTcamera.h │ ├── DXUTgui.cpp │ ├── DXUTgui.h │ ├── DXUTguiIME.cpp │ ├── DXUTguiIME.h │ ├── DXUTres.cpp │ ├── DXUTres.h │ ├── DXUTsettingsdlg.cpp │ ├── DXUTsettingsdlg.h │ ├── ImeUi.cpp │ ├── ImeUi.h │ ├── SDKmesh.cpp │ ├── SDKmesh.h │ ├── SDKmisc.cpp │ ├── SDKmisc.h │ ├── Windows10SDKVS13_x64.props │ ├── Windows81SDKVS12_x64.props │ ├── Windows81SDK_x64.props │ ├── Windows8SDK_x64.props │ ├── directx.ico │ └── premake5.lua └── ReadMe.txt ├── premake ├── LICENSE.txt ├── amd_premake_util.lua ├── premake5.exe ├── update_all_vs_files_for_dx11_sample.bat └── update_vs_files_for_dx11_sample.bat └── tiledlighting11 ├── .gitignore ├── build ├── TiledLighting11_2012.sln ├── TiledLighting11_2012.vcxproj ├── TiledLighting11_2012.vcxproj.filters ├── TiledLighting11_2013.sln ├── TiledLighting11_2013.vcxproj ├── TiledLighting11_2013.vcxproj.filters ├── TiledLighting11_2015.sln ├── TiledLighting11_2015.vcxproj ├── TiledLighting11_2015.vcxproj.filters ├── Windows10SDKVS13_x64.props ├── Windows81SDKVS12_x64.props ├── Windows81SDK_x64.props └── Windows8SDK_x64.props ├── doc ├── TiledLighting11.pdf └── TiledLighting11.ppsx ├── media ├── Thumbnail.png ├── misc │ ├── default_diff.dds │ └── default_norm.dds ├── sponza │ ├── background_diff.dds │ ├── background_norm.dds │ ├── chain_texture_diff.dds │ ├── chain_texture_norm.dds │ ├── lion_diff.dds │ ├── lion_norm.dds │ ├── spnza_bricks_a_diff.dds │ ├── spnza_bricks_a_norm.dds │ ├── sponza.sdkmesh │ ├── sponza_alpha.sdkmesh │ ├── sponza_arch_diff.dds │ ├── sponza_arch_norm.dds │ ├── sponza_ceiling_a_diff.dds │ ├── sponza_ceiling_a_norm.dds │ ├── sponza_column_a_diff.dds │ ├── sponza_column_a_norm.dds │ ├── sponza_column_b_diff.dds │ ├── sponza_column_b_norm.dds │ ├── sponza_column_c_diff.dds │ ├── sponza_column_c_norm.dds │ ├── sponza_curtain_blue_diff.dds │ ├── sponza_curtain_blue_norm.dds │ ├── sponza_curtain_diff.dds │ ├── sponza_curtain_green_diff.dds │ ├── sponza_curtain_green_norm.dds │ ├── sponza_curtain_norm.dds │ ├── sponza_details_diff.dds │ ├── sponza_details_norm.dds │ ├── sponza_fabric_blue_diff.dds │ ├── sponza_fabric_blue_norm.dds │ ├── sponza_fabric_diff.dds │ ├── sponza_fabric_green_diff.dds │ ├── sponza_fabric_green_norm.dds │ ├── sponza_fabric_norm.dds │ ├── sponza_flagpole_diff.dds │ ├── sponza_flagpole_norm.dds │ ├── sponza_floor_a_diff.dds │ ├── sponza_floor_a_norm.dds │ ├── sponza_roof_diff.dds │ ├── sponza_roof_norm.dds │ ├── sponza_thorn_diff.dds │ ├── sponza_thorn_norm.dds │ ├── vase_diff.dds │ ├── vase_hanging_diff.dds │ ├── vase_hanging_norm.dds │ ├── vase_norm.dds │ ├── vase_plant_diff.dds │ ├── vase_plant_norm.dds │ ├── vase_round_diff.dds │ └── vase_round_norm.dds └── ui │ ├── Font.dds │ └── dxutcontrols.dds ├── premake └── premake5.lua └── src ├── CommonConstants.h ├── CommonUtil.cpp ├── CommonUtil.h ├── ForwardPlusUtil.cpp ├── ForwardPlusUtil.h ├── LightUtil.cpp ├── LightUtil.h ├── RSMRenderer.cpp ├── RSMRenderer.h ├── ResourceFiles ├── TiledLighting11.rc ├── dpiaware.manifest └── resource.h ├── Shaders ├── Common.hlsl ├── CommonHeader.h ├── DebugDraw.hlsl ├── Deferred.hlsl ├── Forward.hlsl ├── GenerateVPLs.hlsl ├── LightingCommonHeader.h ├── RSM.hlsl ├── TilingCommonHeader.h ├── TilingDeferred.hlsl ├── TilingForward.hlsl └── Transparency.hlsl ├── ShadowRenderer.cpp ├── ShadowRenderer.h ├── TiledDeferredUtil.cpp ├── TiledDeferredUtil.h └── TiledLighting11.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/README.md -------------------------------------------------------------------------------- /amd_sdk/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/.gitattributes -------------------------------------------------------------------------------- /amd_sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/.gitignore -------------------------------------------------------------------------------- /amd_sdk/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/LICENSE.txt -------------------------------------------------------------------------------- /amd_sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/README.md -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2010.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2010.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2012.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2012.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2013.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2013.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2015.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_2015.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2010.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2010.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2010.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2012.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2012.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2013.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2013.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2015.vcxproj -------------------------------------------------------------------------------- /amd_sdk/build/AMD_SDK_Minimal_2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/AMD_SDK_Minimal_2015.vcxproj.filters -------------------------------------------------------------------------------- /amd_sdk/build/Windows10SDKVS13_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/Windows10SDKVS13_x64.props -------------------------------------------------------------------------------- /amd_sdk/build/Windows81SDKVS12_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/Windows81SDKVS12_x64.props -------------------------------------------------------------------------------- /amd_sdk/build/Windows81SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/Windows81SDK_x64.props -------------------------------------------------------------------------------- /amd_sdk/build/Windows8SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/build/Windows8SDK_x64.props -------------------------------------------------------------------------------- /amd_sdk/inc/AMD_SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/inc/AMD_SDK.h -------------------------------------------------------------------------------- /amd_sdk/inc/ShaderCacheSampleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/inc/ShaderCacheSampleHelper.h -------------------------------------------------------------------------------- /amd_sdk/media/AMD.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/media/AMD.dds -------------------------------------------------------------------------------- /amd_sdk/media/AMD.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/media/AMD.ico -------------------------------------------------------------------------------- /amd_sdk/media/amd_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/media/amd_logo_black.png -------------------------------------------------------------------------------- /amd_sdk/premake/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/premake/premake5.lua -------------------------------------------------------------------------------- /amd_sdk/premake/premake5_minimal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/premake/premake5_minimal.lua -------------------------------------------------------------------------------- /amd_sdk/src/AMD_Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/AMD_Mesh.cpp -------------------------------------------------------------------------------- /amd_sdk/src/AMD_Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/AMD_Mesh.h -------------------------------------------------------------------------------- /amd_sdk/src/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Geometry.cpp -------------------------------------------------------------------------------- /amd_sdk/src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Geometry.h -------------------------------------------------------------------------------- /amd_sdk/src/HUD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/HUD.cpp -------------------------------------------------------------------------------- /amd_sdk/src/HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/HUD.h -------------------------------------------------------------------------------- /amd_sdk/src/HelperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/HelperFunctions.cpp -------------------------------------------------------------------------------- /amd_sdk/src/HelperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/HelperFunctions.h -------------------------------------------------------------------------------- /amd_sdk/src/LineRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/LineRender.cpp -------------------------------------------------------------------------------- /amd_sdk/src/LineRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/LineRender.h -------------------------------------------------------------------------------- /amd_sdk/src/Magnify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Magnify.cpp -------------------------------------------------------------------------------- /amd_sdk/src/Magnify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Magnify.h -------------------------------------------------------------------------------- /amd_sdk/src/MagnifyTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/MagnifyTool.cpp -------------------------------------------------------------------------------- /amd_sdk/src/MagnifyTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/MagnifyTool.h -------------------------------------------------------------------------------- /amd_sdk/src/ShaderCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/ShaderCache.cpp -------------------------------------------------------------------------------- /amd_sdk/src/ShaderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/ShaderCache.h -------------------------------------------------------------------------------- /amd_sdk/src/ShaderCacheSampleHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/ShaderCacheSampleHelper.cpp -------------------------------------------------------------------------------- /amd_sdk/src/Shaders/Line.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Shaders/Line.hlsl -------------------------------------------------------------------------------- /amd_sdk/src/Shaders/Sprite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Shaders/Sprite.hlsl -------------------------------------------------------------------------------- /amd_sdk/src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Sprite.cpp -------------------------------------------------------------------------------- /amd_sdk/src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Sprite.h -------------------------------------------------------------------------------- /amd_sdk/src/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Timer.cpp -------------------------------------------------------------------------------- /amd_sdk/src/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/Timer.h -------------------------------------------------------------------------------- /amd_sdk/src/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/crc.cpp -------------------------------------------------------------------------------- /amd_sdk/src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/amd_sdk/src/crc.h -------------------------------------------------------------------------------- /dxut/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/.gitattributes -------------------------------------------------------------------------------- /dxut/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/.gitignore -------------------------------------------------------------------------------- /dxut/Core/DDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DDSTextureLoader.cpp -------------------------------------------------------------------------------- /dxut/Core/DDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DDSTextureLoader.h -------------------------------------------------------------------------------- /dxut/Core/DXUT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUT.cpp -------------------------------------------------------------------------------- /dxut/Core/DXUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUT.h -------------------------------------------------------------------------------- /dxut/Core/DXUTDevice11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUTDevice11.cpp -------------------------------------------------------------------------------- /dxut/Core/DXUTDevice11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUTDevice11.h -------------------------------------------------------------------------------- /dxut/Core/DXUT_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUT_2010.vcxproj -------------------------------------------------------------------------------- /dxut/Core/DXUT_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUT_2012.vcxproj -------------------------------------------------------------------------------- /dxut/Core/DXUT_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUT_2013.vcxproj -------------------------------------------------------------------------------- /dxut/Core/DXUT_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUT_2015.vcxproj -------------------------------------------------------------------------------- /dxut/Core/DXUTmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUTmisc.cpp -------------------------------------------------------------------------------- /dxut/Core/DXUTmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/DXUTmisc.h -------------------------------------------------------------------------------- /dxut/Core/ScreenGrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/ScreenGrab.cpp -------------------------------------------------------------------------------- /dxut/Core/ScreenGrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/ScreenGrab.h -------------------------------------------------------------------------------- /dxut/Core/WICTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/WICTextureLoader.cpp -------------------------------------------------------------------------------- /dxut/Core/WICTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/WICTextureLoader.h -------------------------------------------------------------------------------- /dxut/Core/Windows10SDKVS13_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/Windows10SDKVS13_x64.props -------------------------------------------------------------------------------- /dxut/Core/Windows81SDKVS12_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/Windows81SDKVS12_x64.props -------------------------------------------------------------------------------- /dxut/Core/Windows81SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/Windows81SDK_x64.props -------------------------------------------------------------------------------- /dxut/Core/Windows8SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/Windows8SDK_x64.props -------------------------------------------------------------------------------- /dxut/Core/dxerr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/dxerr.cpp -------------------------------------------------------------------------------- /dxut/Core/dxerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/dxerr.h -------------------------------------------------------------------------------- /dxut/Core/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Core/premake5.lua -------------------------------------------------------------------------------- /dxut/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/MIT.txt -------------------------------------------------------------------------------- /dxut/Optional/DXUTLockFreePipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTLockFreePipe.h -------------------------------------------------------------------------------- /dxut/Optional/DXUTOpt_2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTOpt_2010.vcxproj -------------------------------------------------------------------------------- /dxut/Optional/DXUTOpt_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTOpt_2012.vcxproj -------------------------------------------------------------------------------- /dxut/Optional/DXUTOpt_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTOpt_2013.vcxproj -------------------------------------------------------------------------------- /dxut/Optional/DXUTOpt_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTOpt_2015.vcxproj -------------------------------------------------------------------------------- /dxut/Optional/DXUTcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTcamera.cpp -------------------------------------------------------------------------------- /dxut/Optional/DXUTcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTcamera.h -------------------------------------------------------------------------------- /dxut/Optional/DXUTgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTgui.cpp -------------------------------------------------------------------------------- /dxut/Optional/DXUTgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTgui.h -------------------------------------------------------------------------------- /dxut/Optional/DXUTguiIME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTguiIME.cpp -------------------------------------------------------------------------------- /dxut/Optional/DXUTguiIME.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTguiIME.h -------------------------------------------------------------------------------- /dxut/Optional/DXUTres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTres.cpp -------------------------------------------------------------------------------- /dxut/Optional/DXUTres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTres.h -------------------------------------------------------------------------------- /dxut/Optional/DXUTsettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTsettingsdlg.cpp -------------------------------------------------------------------------------- /dxut/Optional/DXUTsettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/DXUTsettingsdlg.h -------------------------------------------------------------------------------- /dxut/Optional/ImeUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/ImeUi.cpp -------------------------------------------------------------------------------- /dxut/Optional/ImeUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/ImeUi.h -------------------------------------------------------------------------------- /dxut/Optional/SDKmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/SDKmesh.cpp -------------------------------------------------------------------------------- /dxut/Optional/SDKmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/SDKmesh.h -------------------------------------------------------------------------------- /dxut/Optional/SDKmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/SDKmisc.cpp -------------------------------------------------------------------------------- /dxut/Optional/SDKmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/SDKmisc.h -------------------------------------------------------------------------------- /dxut/Optional/Windows10SDKVS13_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/Windows10SDKVS13_x64.props -------------------------------------------------------------------------------- /dxut/Optional/Windows81SDKVS12_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/Windows81SDKVS12_x64.props -------------------------------------------------------------------------------- /dxut/Optional/Windows81SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/Windows81SDK_x64.props -------------------------------------------------------------------------------- /dxut/Optional/Windows8SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/Windows8SDK_x64.props -------------------------------------------------------------------------------- /dxut/Optional/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/directx.ico -------------------------------------------------------------------------------- /dxut/Optional/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/Optional/premake5.lua -------------------------------------------------------------------------------- /dxut/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/dxut/ReadMe.txt -------------------------------------------------------------------------------- /premake/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/premake/LICENSE.txt -------------------------------------------------------------------------------- /premake/amd_premake_util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/premake/amd_premake_util.lua -------------------------------------------------------------------------------- /premake/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/premake/premake5.exe -------------------------------------------------------------------------------- /premake/update_all_vs_files_for_dx11_sample.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/premake/update_all_vs_files_for_dx11_sample.bat -------------------------------------------------------------------------------- /premake/update_vs_files_for_dx11_sample.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/premake/update_vs_files_for_dx11_sample.bat -------------------------------------------------------------------------------- /tiledlighting11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/.gitignore -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2012.sln -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2012.vcxproj -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2012.vcxproj.filters -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2013.sln -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2013.vcxproj -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2013.vcxproj.filters -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2015.sln -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2015.vcxproj -------------------------------------------------------------------------------- /tiledlighting11/build/TiledLighting11_2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/TiledLighting11_2015.vcxproj.filters -------------------------------------------------------------------------------- /tiledlighting11/build/Windows10SDKVS13_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/Windows10SDKVS13_x64.props -------------------------------------------------------------------------------- /tiledlighting11/build/Windows81SDKVS12_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/Windows81SDKVS12_x64.props -------------------------------------------------------------------------------- /tiledlighting11/build/Windows81SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/Windows81SDK_x64.props -------------------------------------------------------------------------------- /tiledlighting11/build/Windows8SDK_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/build/Windows8SDK_x64.props -------------------------------------------------------------------------------- /tiledlighting11/doc/TiledLighting11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/doc/TiledLighting11.pdf -------------------------------------------------------------------------------- /tiledlighting11/doc/TiledLighting11.ppsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/doc/TiledLighting11.ppsx -------------------------------------------------------------------------------- /tiledlighting11/media/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/Thumbnail.png -------------------------------------------------------------------------------- /tiledlighting11/media/misc/default_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/misc/default_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/misc/default_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/misc/default_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/background_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/background_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/background_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/background_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/chain_texture_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/chain_texture_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/chain_texture_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/chain_texture_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/lion_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/lion_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/lion_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/lion_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/spnza_bricks_a_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/spnza_bricks_a_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/spnza_bricks_a_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/spnza_bricks_a_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza.sdkmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza.sdkmesh -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_alpha.sdkmesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_alpha.sdkmesh -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_arch_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_arch_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_arch_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_arch_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_ceiling_a_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_ceiling_a_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_ceiling_a_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_ceiling_a_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_column_a_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_column_a_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_column_a_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_column_a_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_column_b_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_column_b_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_column_b_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_column_b_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_column_c_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_column_c_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_column_c_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_column_c_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_curtain_blue_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_curtain_blue_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_curtain_blue_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_curtain_blue_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_curtain_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_curtain_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_curtain_green_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_curtain_green_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_curtain_green_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_curtain_green_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_curtain_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_curtain_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_details_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_details_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_details_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_details_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_fabric_blue_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_fabric_blue_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_fabric_blue_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_fabric_blue_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_fabric_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_fabric_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_fabric_green_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_fabric_green_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_fabric_green_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_fabric_green_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_fabric_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_fabric_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_flagpole_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_flagpole_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_flagpole_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_flagpole_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_floor_a_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_floor_a_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_floor_a_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_floor_a_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_roof_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_roof_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_roof_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_roof_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_thorn_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_thorn_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/sponza_thorn_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/sponza_thorn_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_hanging_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_hanging_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_hanging_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_hanging_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_plant_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_plant_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_plant_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_plant_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_round_diff.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_round_diff.dds -------------------------------------------------------------------------------- /tiledlighting11/media/sponza/vase_round_norm.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/sponza/vase_round_norm.dds -------------------------------------------------------------------------------- /tiledlighting11/media/ui/Font.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/ui/Font.dds -------------------------------------------------------------------------------- /tiledlighting11/media/ui/dxutcontrols.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/media/ui/dxutcontrols.dds -------------------------------------------------------------------------------- /tiledlighting11/premake/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/premake/premake5.lua -------------------------------------------------------------------------------- /tiledlighting11/src/CommonConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/CommonConstants.h -------------------------------------------------------------------------------- /tiledlighting11/src/CommonUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/CommonUtil.cpp -------------------------------------------------------------------------------- /tiledlighting11/src/CommonUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/CommonUtil.h -------------------------------------------------------------------------------- /tiledlighting11/src/ForwardPlusUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ForwardPlusUtil.cpp -------------------------------------------------------------------------------- /tiledlighting11/src/ForwardPlusUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ForwardPlusUtil.h -------------------------------------------------------------------------------- /tiledlighting11/src/LightUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/LightUtil.cpp -------------------------------------------------------------------------------- /tiledlighting11/src/LightUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/LightUtil.h -------------------------------------------------------------------------------- /tiledlighting11/src/RSMRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/RSMRenderer.cpp -------------------------------------------------------------------------------- /tiledlighting11/src/RSMRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/RSMRenderer.h -------------------------------------------------------------------------------- /tiledlighting11/src/ResourceFiles/TiledLighting11.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ResourceFiles/TiledLighting11.rc -------------------------------------------------------------------------------- /tiledlighting11/src/ResourceFiles/dpiaware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ResourceFiles/dpiaware.manifest -------------------------------------------------------------------------------- /tiledlighting11/src/ResourceFiles/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ResourceFiles/resource.h -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/Common.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/Common.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/CommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/CommonHeader.h -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/DebugDraw.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/DebugDraw.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/Deferred.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/Deferred.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/Forward.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/Forward.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/GenerateVPLs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/GenerateVPLs.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/LightingCommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/LightingCommonHeader.h -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/RSM.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/RSM.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/TilingCommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/TilingCommonHeader.h -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/TilingDeferred.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/TilingDeferred.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/TilingForward.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/TilingForward.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/Shaders/Transparency.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/Shaders/Transparency.hlsl -------------------------------------------------------------------------------- /tiledlighting11/src/ShadowRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ShadowRenderer.cpp -------------------------------------------------------------------------------- /tiledlighting11/src/ShadowRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/ShadowRenderer.h -------------------------------------------------------------------------------- /tiledlighting11/src/TiledDeferredUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/TiledDeferredUtil.cpp -------------------------------------------------------------------------------- /tiledlighting11/src/TiledDeferredUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/TiledDeferredUtil.h -------------------------------------------------------------------------------- /tiledlighting11/src/TiledLighting11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/TiledLighting11/HEAD/tiledlighting11/src/TiledLighting11.cpp --------------------------------------------------------------------------------