mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
Vulcan Nightmare
Experimentally bringing up vulcan support
This commit is contained in:
parent
863a786c48
commit
83b576e8d9
189 changed files with 12147 additions and 7820 deletions
13
assets/shaders/charge_dust.frag.glsl
Normal file
13
assets/shaders/charge_dust.frag.glsl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#version 450
|
||||
|
||||
layout(location = 0) in float vAlpha;
|
||||
|
||||
layout(location = 0) out vec4 outColor;
|
||||
|
||||
void main() {
|
||||
vec2 p = gl_PointCoord - vec2(0.5);
|
||||
float dist = length(p);
|
||||
if (dist > 0.5) discard;
|
||||
float alpha = smoothstep(0.5, 0.1, dist) * vAlpha * 0.45;
|
||||
outColor = vec4(0.65, 0.55, 0.40, alpha);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue