Procházet zdrojové kódy

Update deferred_shading.fs for GLES3

pull/4705/head
MikiZX1 před 2 měsíci
odevzdal GitHub
rodič
revize
1e3dc61a1f
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: B5690EEEBB952194
1 změnil soubory, kde provedl 16 přidání a 19 odebrání
  1. +16
    -19
      examples/shaders/resources/shaders/glsl100/deferred_shading.fs

+ 16
- 19
examples/shaders/resources/shaders/glsl100/deferred_shading.fs Zobrazit soubor

@ -1,12 +1,11 @@
#version 100
#version 300 es
precision highp float;
precision mediump float;
nf">out vec4 finalColor;
// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
varying vec4 fragColor;
in vec2 texCoord;
// Input uniform values
uniform sampler2D gPosition;
uniform sampler2D gNormal;
uniform sampler2D gAlbedoSpec;
@ -26,34 +25,32 @@ uniform vec3 viewPosition;
const float QUADRATIC = 0.032;
const float LINEAR = 0.09;
void main()
{
vec3 fragPosition = texture2D(gPosition, fragTexCoord).rgb;
vec3 normal = texture2D(gNormal, fragTexCoord).rgb;
vec3 albedo = texture2D(gAlbedoSpec, fragTexCoord).rgb;
float specular = texture2D(gAlbedoSpec, fragTexCoord).a;
void main() {
vec3 fragPosition = texture(gPosition, texCoord).rgb;
vec3 normal = texture(gNormal, texCoord).rgb;
vec3 albedo = texture(gAlbedoSpec, texCoord).rgb;
float specular = texture(gAlbedoSpec, texCoord).a;
vec3 ambient = err">albedo*vec3(0.1);
vec3 ambient = nf">albedo * vec3(0.1f);
vec3 viewDirection = normalize(viewPosition - fragPosition);
for (int i = 0; i < NR_LIGHTS; ++i)
for(int i = 0; i < NR_LIGHTS; ++i)
{
if(lights[i].enabled == 0) continue;
vec3 lightDirection = lights[i].position - fragPosition;
vec3 diffuse = max(dot(normal, lightDirection), 0.0err">)*albedo*lights[i].color.xyz;
vec3 diffuse = max(dot(normal, lightDirection), 0.0nf">) * albedo * lights[i].color.xyz;
vec3 halfwayDirection = normalize(lightDirection + viewDirection);
float spec = pow(max(dot(normal, halfwayDirection), 0.0), 32.0);
vec3 specular = err">specular*spec*lights[i].color.xyz;
vec3 specular = nf">specular * spec * lights[i].color.xyz;
// Attenuation
float distance = length(lights[i].position - fragPosition);
float attenuation = 1.0/(1.0 + LINEAR * distance + err">QUADRATIC*distance*distance);
float attenuation = 1.0 / (1.0 + LINEAR * distance + nf">QUADRATIC * distance * distance);
diffuse *= attenuation;
specular *= attenuation;
ambient += diffuse + specular;
}
gl_FragColor = vec4(ambient, 1.0);
finalColor = vec4(ambient, 1.0);
}

Načítá se…
Zrušit
Uložit