Skip to content

Commit f2578ee

Browse files
committed
Shaders compile!
1 parent ffb4bc2 commit f2578ee

File tree

8 files changed

+25
-54
lines changed

8 files changed

+25
-54
lines changed

source/shaders/filelist.txt

Lines changed: 0 additions & 24 deletions
This file was deleted.

source/shaders/filelistgen.txt

Lines changed: 0 additions & 24 deletions
This file was deleted.

source/shaders/filestocopy.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
voxels_vs20.fxc
2-
voxels_ps20.fxc
31
dx_proxy.dll
42
shadercompile.exe
53
shadercompile_dll.dll
192 Bytes
Binary file not shown.
182 Bytes
Binary file not shown.

source/shaders/uniquefilestocopy.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@ dx_proxy.dll
22
shadercompile.exe
33
shadercompile_dll.dll
44
tier0.dll
5-
voxels_ps20.fxc
6-
voxels_vs20.fxc
75
vstdlib.dll

source/shaders/voxels_ps20.fxc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
adasdadasdadasdasdsadsd
1+
struct INPUT {
2+
float4 pos : POSITION0;
3+
};
4+
5+
float4 main( INPUT input ) : COLOR
6+
{
7+
float4 blue = float4(0, 0, 1, 1);
8+
9+
return blue;
10+
}

source/shaders/voxels_vs20.fxc

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
adasdadasdadasdasdsadsd
1+
struct INPUT {
2+
float4 pos : POSITION0;
3+
};
4+
5+
struct OUTPUT {
6+
float4 pos : POSITION0;
7+
};
8+
9+
OUTPUT main( INPUT input ) {
10+
OUTPUT output;
11+
12+
output.pos = input.pos;
13+
14+
return output;
15+
}

0 commit comments

Comments
 (0)