diff options
Diffstat (limited to 'o3d/compiler/technique/test_data/notechnique.fx')
-rw-r--r-- | o3d/compiler/technique/test_data/notechnique.fx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/o3d/compiler/technique/test_data/notechnique.fx b/o3d/compiler/technique/test_data/notechnique.fx new file mode 100644 index 0000000..2201243 --- /dev/null +++ b/o3d/compiler/technique/test_data/notechnique.fx @@ -0,0 +1,7 @@ +float4x4 worldViewProj : WORLDVIEWPROJECTION; +void vs(in float4 pos, out float4 opos) { + opos = mul(pos, worldViewProj); +} +float4 fs(): COLOR { + return float3(0.33f, 0.57f, 0.10f); +} |