| 12345678910111213141516171819202122232425262728293031323334 |
- uniform vec3 cAmbientStartColor;
- uniform vec3 cAmbientEndColor;
- uniform mat3 cBillboardRot;
- uniform vec3 cCameraPos;
- uniform mat3 cCameraRot;
- uniform float cNearClip;
- uniform float cFarClip;
- uniform vec4 cDepthMode;
- uniform vec3 cFrustumSize;
- uniform float cDeltaTime;
- uniform float cElapsedTime;
- uniform vec4 cGBufferOffsets;
- uniform vec3 cLightDir;
- uniform vec4 cLightPos;
- uniform mat4 cModel;
- uniform mat4 cViewProj;
- uniform vec4 cUOffset;
- uniform vec4 cVOffset;
- uniform mat4 cZone;
- #ifndef GL_ES
- uniform mat4 cLightMatrices[4];
- #else
- uniform mat4 cLightMatrices[2];
- #endif
- #ifdef SKINNED
- #ifdef RASPI
- uniform vec4 cSkinMatrices[32*3];
- #else
- uniform vec4 cSkinMatrices[64*3];
- #endif
- #endif
- #ifdef NUMVERTEXLIGHTS
- uniform vec4 cVertexLights[4*3];
- #endif
|