ITR2_ASSET/Engine/Shaders/StandaloneRenderer/OpenGL/SlateVertexShader.glsl

51 lines
1.2 KiB
Text
Raw Normal View History

2024-11-19 21:27:19 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
// #version 120 at the beginning is added in FSlateOpenGLShader::CompileShader()
uniform mat4 ViewProjectionMatrix;
// Per vertex
attribute vec4 InTexCoords;
attribute vec2 InPosition;
attribute vec4 InColor;
attribute vec4 InSecondaryColor;
// Between vertex and pixel shader
varying vec4 Position;
varying vec4 TexCoords;
varying vec4 Color;
varying vec4 SecondaryColor;
vec3 powScalar(vec3 values, float power)
{
return vec3(pow(values.x, power), pow(values.y, power), pow(values.z, power));
}
float sRGBToLinearChannel( float ColorChannel )
{
return ColorChannel > 0.04045 ? pow( ColorChannel * (1.0 / 1.055) + 0.0521327, 2.4 ) : ColorChannel * (1.0 / 12.92);
}
vec3 sRGBToLinear( vec3 Color )
{
return vec3(
sRGBToLinearChannel(Color.r),
sRGBToLinearChannel(Color.g),
sRGBToLinearChannel(Color.b));
}
void main()
{
TexCoords = InTexCoords;
Color.rgb = sRGBToLinear(InColor.rgb);
Color.a = InColor.a;
SecondaryColor.rgb = sRGBToLinear(InSecondaryColor.rgb);
SecondaryColor.a = InSecondaryColor.a;
Position = vec4( InPosition, 0, 1 );
gl_Position = ViewProjectionMatrix * vec4( InPosition, 0, 1 );
}