diff options
author | vaxerski <[email protected]> | 2023-03-24 19:43:50 +0000 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-03-24 19:43:50 +0000 |
commit | c418007c686abc978ef4119976c2231a105a5568 (patch) | |
tree | f0502ff8bb7d404a2b236d1ef8c0c26f0a9393b7 /src/render/shaders | |
parent | cc2c270ddeb8df25e05016e6cebd6512f56835ee (diff) | |
download | Hyprland-c418007c686abc978ef4119976c2231a105a5568.tar.gz Hyprland-c418007c686abc978ef4119976c2231a105a5568.zip |
shaders: fix missing discardAlphaZero
Diffstat (limited to 'src/render/shaders')
-rw-r--r-- | src/render/shaders/Textures.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/render/shaders/Textures.hpp b/src/render/shaders/Textures.hpp index 4360f5db..52e77fae 100644 --- a/src/render/shaders/Textures.hpp +++ b/src/render/shaders/Textures.hpp @@ -145,6 +145,7 @@ uniform vec2 fullSize; uniform float radius; uniform int discardOpaque; +uniform int discardAlphaZero; uniform int applyTint; uniform vec3 tint; @@ -231,6 +232,7 @@ uniform vec2 fullSize; uniform float radius; uniform int discardOpaque; +uniform int discardAlphaZero; uniform int applyTint; uniform vec3 tint; |