Skip to content

Commit

Permalink
Color buffer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed May 28, 2024
1 parent 59cdbde commit f7cb876
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/tlUIApp/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,9 @@ namespace tl
{
{
gl::OffscreenBufferBinding binding(p.offscreenBuffer);
p.render->begin(p.frameBufferSize);
timeline::RenderOptions renderOptions;
renderOptions.colorBuffer = p.colorBuffer->get();
p.render->begin(p.frameBufferSize, renderOptions);
ui::DrawEvent drawEvent(
event.style,
event.iconLibrary,
Expand Down

0 comments on commit f7cb876

Please sign in to comment.