home *** CD-ROM | disk | FTP | other *** search
/ NVIDIA Tech Demo: DAWN / NVIDIA_demo.iso / Dawn.exe / Disk1 / data1.cab / Program_Executable_Files / shaders / _white.fp20 < prev    next >
Encoding:
Text File  |  2003-02-11  |  254 b   |  14 lines

  1. struct v2fConnector : vertex2fragment  {
  2.     float4 wpos:WPOS;
  3. };
  4.  
  5. struct f2fConnector : fragment2framebuffer  {
  6.     float4 COL;
  7. };
  8.  
  9. f2fConnector main(v2fConnector a2v){
  10.   f2fConnector v2f; 
  11.   v2f.COL = float4(1.0, 1.0, 1.0, 1.0);
  12.   return v2f;
  13. }
  14.