Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch RenderGraph path as default. #1783

Merged
merged 51 commits into from
Sep 30, 2020
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
8ced138
Enable Render Graph by default.
JulienIgnace-Unity Sep 7, 2020
61e105f
Fixed a leak in test 9901
JulienIgnace-Unity Sep 7, 2020
0a0d455
Enabled debug menu entry for enabling/disabling Render Graph
JulienIgnace-Unity Sep 7, 2020
32b2c9b
Cleaned up Raytracing buffers when not using rendergraph
JulienIgnace-Unity Sep 7, 2020
bb6fef4
Fixed path tracing and non render graph path.
JulienIgnace-Unity Sep 7, 2020
7da8581
Fixed AO allocation
JulienIgnace-Unity Sep 7, 2020
c0395ed
Updated yamato to change RenderGraph tests to non render graph tests.
JulienIgnace-Unity Sep 7, 2020
d647ee5
Removed unused function
JulienIgnace-Unity Sep 7, 2020
eb775c0
Fixed ambient occlusion with Render Graph
JulienIgnace-Unity Sep 9, 2020
daf9213
Fixed Render Graph Log to log all graphs during a frame.
JulienIgnace-Unity Sep 10, 2020
5e0e25f
Fixed binding of light list buffers in forward.
JulienIgnace-Unity Sep 11, 2020
1333a7d
Fixed GCalloc
JulienIgnace-Unity Sep 11, 2020
36b7dc5
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 11, 2020
392d3f2
Remove obsolete member of test cameras
JulienIgnace-Unity Sep 11, 2020
98a8dab
Workaround for weird gcalloc in GrabCoCHistory when XR and RG are bot…
JulienIgnace-Unity Sep 11, 2020
89cb45e
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 15, 2020
838aa6f
Post merge fix
JulienIgnace-Unity Sep 15, 2020
22e6617
Temp yamato remote fix
JulienIgnace-Unity Sep 15, 2020
4f6f83d
Tentative fix part 2
JulienIgnace-Unity Sep 15, 2020
7b6a71a
Revert "Tentative fix part 2"
theopnv Sep 15, 2020
df72960
Revert "Temp yamato remote fix"
theopnv Sep 15, 2020
1fa80a4
Tmp workaround yamato remote
theopnv Sep 16, 2020
a6c2ae4
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 16, 2020
205ee72
Missing doc
JulienIgnace-Unity Sep 17, 2020
60b47e2
Replace scp with rsync to avoid locked .git issue
theopnv Sep 17, 2020
299c632
Fixed transparent MSAA
JulienIgnace-Unity Sep 18, 2020
8c05b31
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 21, 2020
c492623
Update yml
JulienIgnace-Unity Sep 21, 2020
cdd7edb
Fixed some full screen debug with XR.
JulienIgnace-Unity Sep 21, 2020
2ac8d57
Revert "Replace scp with rsync to avoid locked .git issue"
JulienIgnace-Unity Sep 22, 2020
c1e1e9b
regen yml
JulienIgnace-Unity Sep 22, 2020
b438f91
Disable GCAlloc tests on macos
JulienIgnace-Unity Sep 22, 2020
df87890
Added an index to render graph texture resources name to help trackin…
JulienIgnace-Unity Sep 23, 2020
f556cc2
Removed useless parameters
JulienIgnace-Unity Sep 23, 2020
e0a3030
Fixed ResolveFullScreenDebug on Vulkan.
JulienIgnace-Unity Sep 23, 2020
cfdde3d
Fixed binding of depth pyramid shader parameter during forward transp…
JulienIgnace-Unity Sep 23, 2020
f8f2387
Fixed motion vector buffer binding in custom passes.
JulienIgnace-Unity Sep 23, 2020
5603e5b
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 24, 2020
7e590f5
Fixed a wrong test in custom passes.
JulienIgnace-Unity Sep 25, 2020
8de1da2
Bind null handle to avoid issue with planar not needing this, but mai…
FrancescoC-unity Sep 25, 2020
5608d9f
Changelog
FrancescoC-unity Sep 25, 2020
7eb3f4a
Comment
FrancescoC-unity Sep 25, 2020
a6156d0
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 29, 2020
09ff5e9
Update yml files
JulienIgnace-Unity Sep 29, 2020
22ebe68
Update yml files
JulienIgnace-Unity Sep 29, 2020
fa4f555
Merge branch 'HDRP/fix-rg-on-consoles' of https://github.com/Unity-Te…
JulienIgnace-Unity Sep 29, 2020
9226b45
Merge branch 'HDRP/staging' into HDRP/rendergraph-as-default
sebastienlagarde Sep 29, 2020
a084e7e
Merge branch 'HDRP/staging' into HDRP/rendergraph-as-default
sebastienlagarde Sep 30, 2020
1c006d0
update resource asset and refrence screenshots for 001-HDTemplate
sebastienlagarde Sep 30, 2020
5da1f43
Merge branch 'HDRP/staging' of https://github.com/Unity-Technologies/…
JulienIgnace-Unity Sep 30, 2020
82514f3
Update yml
JulienIgnace-Unity Sep 30, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed a leak in test 9901
  • Loading branch information
JulienIgnace-Unity committed Sep 7, 2020
commit 61e105fb7b8e6f32597f8a84e4e0e4b0573d4c05
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,15 @@ AOVRequestDataCollection BuildAovRequest()
).Build();
}

void OnDisable()
{
RTHandles.Release(_rt.output);
RTHandles.Release(_rt.color);
RTHandles.Release(_rt.depth);
RTHandles.Release(_rt.normal);
RTHandles.Release(_rt.motionvector);
}

void Start()
{
GetComponent<HDAdditionalCameraData>().SetAOVRequests(BuildAovRequest());
Expand Down