mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
53 lines
1.4 KiB
OpenEdge ABL
53 lines
1.4 KiB
OpenEdge ABL
// This file contains common data definitions for both vertex and fragment shader
|
|
|
|
// these settings are actually pointless but there seem to be some old ATI drivers that fail to compile the shader without setting the precision here.
|
|
precision highp int;
|
|
precision highp float;
|
|
|
|
uniform vec4 uCameraPos;
|
|
uniform int uTextureMode;
|
|
uniform float uClipHeight, uClipHeightDirection;
|
|
uniform vec2 uClipSplit;
|
|
uniform vec4 uClipLine;
|
|
|
|
uniform float uAlphaThreshold;
|
|
|
|
|
|
// colors
|
|
uniform vec4 uObjectColor;
|
|
uniform vec4 uDynLightColor;
|
|
uniform vec4 uFogColor;
|
|
uniform float uDesaturationFactor;
|
|
uniform float uInterpolationFactor;
|
|
|
|
// Fixed colormap stuff
|
|
uniform int uFixedColormap; // 0, when no fixed colormap, 1 for a light value, 2 for a color blend, 3 for a fog layer
|
|
uniform vec4 uFixedColormapStart;
|
|
uniform vec4 uFixedColormapRange;
|
|
|
|
// Glowing walls stuff
|
|
uniform vec4 uGlowTopPlane;
|
|
uniform vec4 uGlowTopColor;
|
|
uniform vec4 uGlowBottomPlane;
|
|
uniform vec4 uGlowBottomColor;
|
|
|
|
uniform vec4 uSplitTopPlane;
|
|
uniform vec4 uSplitBottomPlane;
|
|
|
|
// Lighting + Fog
|
|
uniform vec4 uLightAttr;
|
|
#define uLightLevel uLightAttr.a
|
|
#define uFogDensity uLightAttr.b
|
|
#define uLightFactor uLightAttr.g
|
|
#define uLightDist uLightAttr.r
|
|
uniform int uFogEnabled;
|
|
|
|
// dynamic lights
|
|
uniform int uLightIndex;
|
|
|
|
// matrices
|
|
uniform mat4 ProjectionMatrix;
|
|
uniform mat4 ViewMatrix;
|
|
uniform mat4 ModelMatrix;
|
|
uniform mat4 TextureMatrix;
|
|
|