16 lines
244 B
Plaintext
16 lines
244 B
Plaintext
|
|
struct czm_shadowParameters
|
||
|
|
{
|
||
|
|
#ifdef USE_CUBE_MAP_SHADOW
|
||
|
|
vec3 texCoords;
|
||
|
|
#else
|
||
|
|
vec2 texCoords;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
float depthBias;
|
||
|
|
float depth;
|
||
|
|
float nDotL;
|
||
|
|
vec2 texelStepSize;
|
||
|
|
float normalShadingSmooth;
|
||
|
|
float darkness;
|
||
|
|
};
|