-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Support bend screenspace directional - Frustrum check screenspace shadow lights - Fix normal screenspace shadow constant buffer - Cleanup
- Loading branch information
Showing
20 changed files
with
67,660 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,4 +254,6 @@ ModelManifest.xml | |
.vscode/ | ||
|
||
# Rider IDE config dir | ||
.idea/ | ||
.idea/ | ||
|
||
*.obj |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
Copyright(c) 2016-2023 Panos Karabelas | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell | ||
copies of the Software, and to permit persons to whom the Software is furnished | ||
to do so, subject to the following conditions : | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
//= INCLUDES ========= | ||
#include "common.hlsl" | ||
#include "screen_space_shadows.hlsl" | ||
//==================== | ||
|
||
[numthreads(THREAD_GROUP_COUNT_X, THREAD_GROUP_COUNT_Y, 1)] | ||
void mainCS(uint3 thread_id : SV_DispatchThreadID) | ||
{ | ||
tex_av[thread_id.xy] = float4(float3(1,0,0), 0); | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[Window][World] | ||
Pos=1536,40 | ||
Size=384,379 | ||
Collapsed=0 | ||
DockId=0x00000003,0 | ||
|
||
[Window][Properties] | ||
Pos=1536,421 | ||
Size=384,570 | ||
Collapsed=0 | ||
DockId=0x00000004,0 | ||
|
||
[Window][Console] | ||
Pos=0,753 | ||
Size=612,238 | ||
Collapsed=0 | ||
DockId=0x00000007,0 | ||
|
||
[Window][Assets] | ||
Pos=614,753 | ||
Size=920,238 | ||
Collapsed=0 | ||
DockId=0x00000008,0 | ||
|
||
[Window][Viewport] | ||
Pos=0,40 | ||
Size=1534,711 | ||
Collapsed=0 | ||
DockId=0x00000005,0 | ||
|
||
[Window][##main_window] | ||
Pos=0,8 | ||
Size=1920,983 | ||
Collapsed=0 | ||
|
||
[Window][Debug##Default] | ||
Pos=60,60 | ||
Size=400,400 | ||
Collapsed=0 | ||
|
||
[Window][World selection] | ||
Pos=476,237 | ||
Size=582,316 | ||
Collapsed=0 | ||
|
||
[Docking][Data] | ||
DockSpace ID=0xA9D11E79 Window=0x11109896 Pos=0,69 Size=1920,951 Split=X | ||
DockNode ID=0x00000001 Parent=0xA9D11E79 SizeRef=1534,991 Split=Y | ||
DockNode ID=0x00000005 Parent=0x00000001 SizeRef=1534,741 Selected=0x13926F0B | ||
DockNode ID=0x00000006 Parent=0x00000001 SizeRef=1534,248 Split=X | ||
DockNode ID=0x00000007 Parent=0x00000006 SizeRef=612,248 Selected=0x49278EEE | ||
DockNode ID=0x00000008 Parent=0x00000006 SizeRef=920,248 Selected=0x26CE0345 | ||
DockNode ID=0x00000002 Parent=0xA9D11E79 SizeRef=384,991 Split=Y | ||
DockNode ID=0x00000003 Parent=0x00000002 SizeRef=384,395 Selected=0x39008DEC | ||
DockNode ID=0x00000004 Parent=0x00000002 SizeRef=384,594 Selected=0x199AB496 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.