This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/draw/engines/eevee/shaders/surface_lib.glsl
Clément Foucault da741013a1 EEVEE: GLSL refactor/cleanup
- add the use of DRWShaderLibrary to EEVEE's glsl codebase to reduce code
complexity and duplication.
- split bsdf_common_lib.glsl into multiple sub library which are now shared
with other engines.
- the surface shader code is now more organised and have its own files.
- change default world to use a material nodetree and make lookdev shader
more clear.

Reviewed By: jbakker

Differential Revision: https://developer.blender.org/D8306
2020-07-30 16:44:58 +02:00

44 lines
947 B
GLSL

/** This describe the entire interface of the shader. */
/* Samplers */
uniform sampler2D colorBuffer;
uniform sampler2D depthBuffer;
/* Uniforms */
uniform float refractionDepth;
#define SURFACE_INTERFACE \
vec3 worldPosition; \
vec3 viewPosition; \
vec3 worldNormal; \
vec3 viewNormal;
#ifdef GPU_GEOMETRY_SHADER
in ShaderStageInterface{SURFACE_INTERFACE} dataIn[];
out ShaderStageInterface{SURFACE_INTERFACE} dataOut;
# define PASS_SURFACE_INTERFACE(vert) \
dataOut.worldPosition = dataIn[vert].worldPosition; \
dataOut.viewPosition = dataIn[vert].viewPosition; \
dataOut.worldNormal = dataIn[vert].worldNormal; \
dataOut.viewNormal = dataIn[vert].viewNormal;
#else
IN_OUT ShaderStageInterface{SURFACE_INTERFACE};
#endif
#ifdef HAIR_SHADER
IN_OUT ShaderHairInterface
{
/* world space */
vec3 hairTangent;
float hairThickTime;
float hairThickness;
float hairTime;
flat int hairStrandID;
};
#endif