12 lines
238 B
PostScript
12 lines
238 B
PostScript
#include "common.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
// Pixel
|
|
half4 main ( v_shadow_direct I ) : COLOR
|
|
{
|
|
#ifdef USE_HWSMAP
|
|
return 0;
|
|
#else
|
|
return I.depth;
|
|
#endif
|
|
}
|