0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom-gpl.git synced 2025-06-03 10:11:22 +00:00
qzdoom-gpl/wadsrc/static/shaders/glsl/shaderdefs.i

64 lines
1.6 KiB
OpenEdge ABL
Raw Normal View History

2014-05-12 22:24:26 +02:00
// 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;
2014-05-12 22:24:26 +02:00
uniform vec4 uCameraPos;
uniform int uTextureMode;
2016-04-27 02:10:42 +02:00
uniform float uClipHeight, uClipHeightDirection;
2015-04-05 20:20:56 +02:00
uniform vec2 uClipSplit;
uniform vec4 uClipLine;
2014-05-12 22:24:26 +02:00
uniform float uAlphaThreshold;
2014-05-12 22:24:26 +02:00
// colors
uniform vec4 uObjectColor;
uniform vec4 uDynLightColor;
uniform vec4 uFogColor;
uniform float uDesaturationFactor;
uniform float uInterpolationFactor;
2014-05-12 22:24:26 +02:00
// 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;
2015-04-05 20:20:56 +02:00
uniform vec4 uSplitTopPlane;
uniform vec4 uSplitBottomPlane;
2014-05-12 22:24:26 +02:00
// Lighting + Fog
uniform vec4 uLightAttr;
#define uLightLevel uLightAttr.a
#define uFogDensity uLightAttr.b
#define uLightFactor uLightAttr.g
#define uLightDist uLightAttr.r
uniform int uFogEnabled;
uniform int uPalLightLevels;
2014-05-12 22:24:26 +02:00
// dynamic lights
uniform int uLightIndex;
2014-05-12 22:24:26 +02:00
// quad drawer stuff
#ifdef USE_QUAD_DRAWER
uniform mat4 uQuadVertices;
uniform mat4 uQuadTexCoords;
uniform int uQuadMode;
#endif
// matrices
2014-07-13 23:13:40 +02:00
uniform mat4 ProjectionMatrix;
uniform mat4 ViewMatrix;
uniform mat4 ModelMatrix;
uniform mat4 NormalViewMatrix;
uniform mat4 NormalModelMatrix;
uniform mat4 TextureMatrix;
2014-05-12 22:24:26 +02:00