Ajout version Release/x64 avec les libraries x64 et tuning de la version Debug
This commit is contained in:
9
SQCSim2021/external/sfml251/examples/shader/resources/blink.frag
vendored
Normal file
9
SQCSim2021/external/sfml251/examples/shader/resources/blink.frag
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
uniform sampler2D texture;
|
||||
uniform float blink_alpha;
|
||||
|
||||
void main()
|
||||
{
|
||||
vec4 pixel = gl_Color;
|
||||
pixel.a = blink_alpha;
|
||||
gl_FragColor = pixel;
|
||||
}
|
Reference in New Issue
Block a user