Skip to content

Commit

Permalink
Fix MRT: Fix LOVE 0.10.0 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuAuahDark committed Mar 5, 2020
1 parent 938762a commit 7fe4c2c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fixmrt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
-- This script patches LOVE rendering pipeline to workaround MRT bandwidth problem in some GPU drivers.
-- See: https://github.com/love2d/love/commit/1896f82f5d40d33a551f7c5fd9662db3b4ccdf31

if love._version >= "11.3" then
-- Already fixed in this version
if love.getVersion() < 11 or love._version >= "11.3" then
-- LOVE pre-11.0 does not have this problem.
-- LOVE 11.3 already have this problem worked around.
return true
end

Expand Down

0 comments on commit 7fe4c2c

Please sign in to comment.