8 lines
206 B
PostScript
8 lines
206 B
PostScript
#include "common.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
// Pixel
|
|
half4 main (float4 depth : TEXCOORD1 ) : COLOR
|
|
{
|
|
return depth.z/depth.w;
|
|
}
|