mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-09 01:00:54 +00:00
70b60456a8
Finally, even suns cast shadows :)
11 lines
202 B
GLSL
11 lines
202 B
GLSL
#version 450
|
|
#extension GL_GOOGLE_include_directive : enable
|
|
#include "lighting.h"
|
|
|
|
float
|
|
shadow (uint mapid, uint layer, uint mat_id, vec4 pos, vec3 lpos)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
#include "lighting_main.finc"
|