Skip to content

Commit

Permalink
rendervulkan: Initialize CTM in BlitPushData_t quick path
Browse files Browse the repository at this point in the history
  • Loading branch information
misyltoad committed Nov 8, 2023
1 parent 4e0d1f9 commit 075c580
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/rendervulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3341,6 +3341,12 @@ struct BlitPushData_t
offset[0] = { 0.5f, 0.5f };
opacity[0] = 1.0f;
u_shaderFilter[0] = (uint32_t)GamescopeUpscaleFilter::LINEAR;
ctm[0] = glm::mat3x4
{
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0
};
borderMask = 0;
frameId = s_frameId;

Expand Down

0 comments on commit 075c580

Please sign in to comment.