mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
dbb05c5f33
- make matrix class single precision.
43 lines
1.1 KiB
OpenEdge ABL
43 lines
1.1 KiB
OpenEdge ABL
// This file contains common data definitions for both vertex and fragment shader
|
|
|
|
uniform vec4 uCameraPos;
|
|
uniform float uClipHeightTop, uClipHeightBottom;
|
|
|
|
uniform int uTextureMode;
|
|
|
|
// 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;
|
|
|
|
// 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 ivec4 uLightRange;
|
|
|
|
|
|
// redefine the matrix names to what they actually represent.
|
|
#define ProjectionMatrix gl_ProjectionMatrix
|
|
#define ViewMatrix gl_ModelViewMatrix
|
|
uniform mat4 ModelMatrix;
|
|
uniform mat4 TextureMatrix;
|
|
|