13 lines
272 B
PostScript
13 lines
272 B
PostScript
#include "common.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
// Pixel
|
|
//float4 main ( v_shadow_direct I ) : SV_Target
|
|
float4 main () : SV_Target
|
|
{
|
|
#ifdef USE_HWSMAP
|
|
return 0;
|
|
#else
|
|
return I.depth;
|
|
#endif
|
|
}
|