Watch
2
0
Fork
You've already forked raylib-cs
0
raylib-cs/Examples/Examples/models/resources/shaders/skybox.fs
ChrisDill b0909c3241 Setting up examples project
- Dedicated project for raylib examples using Bindings as a class library.
2018-09-10 11:42:18 +01:00

31 lines
764 B
GLSL

/*******************************************************************************************
*
* rPBR [shader] - Background skybox fragment shader
*
* Copyright (c) 2017 Victor Fisac
*
**********************************************************************************************/
#version 330
// Input vertex attributes (from vertex shader)
in vec3 fragPos;
// Input uniform values
uniform samplerCube environmentMap;
// Output fragment color
out vec4 finalColor;
void main()
{
// Fetch color from texture map
vec3 color = texture(environmentMap, fragPos).rgb;
// Apply gamma correction
color = color/(color + vec3(1.0));
color = pow(color, vec3(1.0/2.2));
// Calculate final fragment color
finalColor = vec4(color, 1.0);
}