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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2003-02-11
|
254 b
|
14 lines
struct v2fConnector : vertex2fragment {
float4 wpos:WPOS;
};
struct f2fConnector : fragment2framebuffer {
float4 COL;
};
f2fConnector main(v2fConnector a2v){
f2fConnector v2f;
v2f.COL = float4(1.0, 1.0, 1.0, 1.0);
return v2f;
}