diff options
author | Moulberry <jjenour@student.unimelb.edu.au> | 2022-10-15 16:14:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-15 16:14:46 +0200 |
commit | 9dff9de9be425a07691951f7f7e6d43ca2c967bf (patch) | |
tree | 525c4086b4b8cb9ee2a329dee7a0915ceaaa788a /src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json | |
parent | 7c6d37b2eb758a13b342b906f0aef88b940bc52a (diff) | |
parent | df02addf3404f07f245d6e6da8ce3ee8d72bd235 (diff) | |
download | NotEnoughUpdates-2.1.0.tar.gz NotEnoughUpdates-2.1.0.tar.bz2 NotEnoughUpdates-2.1.0.zip |
Merge pull request #268 from NotEnoughUpdates/masterv2.1.0
2.1 Continued
Diffstat (limited to 'src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json')
-rw-r--r-- | src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json b/src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json index 653764fb..3bd50d8b 100644 --- a/src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json +++ b/src/main/resources/assets/notenoughupdates/shaders/program/setrgbtoalpha.json @@ -6,12 +6,46 @@ }, "vertex": "blit", "fragment": "setrgbtoalpha", - "attributes": [ "Position" ], + "attributes": [ + "Position" + ], "samplers": [ - { "name": "DiffuseSampler" } + { + "name": "DiffuseSampler" + } ], "uniforms": [ - { "name": "ProjMat", "type": "matrix4x4", "count": 16, "values": [ 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0 ] }, - { "name": "OutSize", "type": "float", "count": 2, "values": [ 1.0, 1.0 ] } + { + "name": "ProjMat", + "type": "matrix4x4", + "count": 16, + "values": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0 + ] + }, + { + "name": "OutSize", + "type": "float", + "count": 2, + "values": [ + 1.0, + 1.0 + ] + } ] } |