R2 Shaders
Functions | Variables
R2LightProjectiveLambert.h File Reference

A projective light with no specular highlights. More...

#include "R2LightShaderMain.h"
#include "R2LightPositional.h"
#include "R2LightProjective.h"
#include "R2LightSpherical.h"
Include dependency graph for R2LightProjectiveLambert.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

R2_light_output_t R2_deferredLightMain (const R2_reconstructed_surface_t surface)
 

Variables

uniform R2_light_positional_t R2_light_projective
 
uniform sampler2D R2_light_projective_image
 
uniform mat4x4 R2_transform_eye_to_light_eye
 
uniform mat4x4 R2_transform_light_projection
 

Detailed Description

A projective light with no specular highlights.

Definition in file R2LightProjectiveLambert.h.

Function Documentation

§ R2_deferredLightMain()

R2_light_output_t R2_deferredLightMain ( const R2_reconstructed_surface_t  surface)

Calculate light values for the current light, based on the current contents of the G-buffer.

Parameters
surfaceReconstructed surface data taken from the G-Buffer
Returns
Calculated light values

Definition at line 18 of file R2LightProjectiveLambert.h.

20 {
22  R2_light_projective,
23  surface.position.xyz,
24  surface.normal,
25  R2_transform_eye_to_light_eye,
26  R2_transform_light_projection);
27 
28  float attenuation = R2_lightPositionalAttenuation(
29  R2_light_projective,
30  vectors.positional.distance) * vectors.back_projected;
31 
32  vec3 image_sample =
33  texture (R2_light_projective_image, vectors.surface_light_uv).rgb;
34 
35  vec3 diffuse =
36  R2_lightSphericalDiffuseLambertTerm (R2_light_projective, vectors.positional);
37 
38  return R2_light_output_t(
39  diffuse * image_sample * attenuation,
40  vec3 (0.0));
41 }
Vectors used when calculating projective lighting.
float R2_lightPositionalAttenuation(const R2_light_positional_t light, const float distance)
vec4 position
The eye-space position of the surface.
R2_light_projective_vectors_t R2_lightProjectiveVectors(const R2_light_positional_t light, const vec3 p, const vec3 n, const mat4x4 m_eye_to_light_eye, const mat4x4 m_light_projection)
vec3 R2_lightSphericalDiffuseLambertTerm(const R2_light_positional_t light, const R2_light_positional_vectors_t v)
vec2 surface_light_uv
The surface position as UV coordinates from the perspective of the light.
float distance
The distance between the surface and light source.
vec3 normal
The eye-space normal vector of the surface.
The type of light values that all deferred light shaders calculate.
Definition: R2LightOutput.h:9
R2_light_positional_vectors_t positional
The vectors for positional lighting.
float back_projected
A value that indicates whether or not the light fragment is back projected (0.0 means back projected...