Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CLA.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ Add your GitHub username as a new entry at the end of the list. Do not alter oth

- BOLL7708
- jeppevinkel
- prjanitor

2 changes: 2 additions & 0 deletions OpenVROverlayPipe/GraphicsSingleton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ internal void OnRender(TimeSpan delta)

foreach (var overlay in Session.Overlays.Values)
{
if (overlay == null || overlay.Animator == null) continue;
_shader3d?.Use();
_shader3d?.SetInt("tex_index", overlay.Animator.GetFrame());

Expand All @@ -79,6 +80,7 @@ internal void OnRender(TimeSpan delta)

foreach (var overlay in Session.Overlays.Values)
{
if (overlay == null || overlay.Animator == null) continue;
overlay.Animator.PostRender();
}
}
Expand Down