diff options
author | Sven Gothel <[email protected]> | 2014-06-19 17:08:45 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-06-19 17:08:45 +0200 |
commit | 33385ba1bb04682cef372adb0cd9f63b1fe55ca7 (patch) | |
tree | 30858bcf355f78b0e69c0f9a17d2fd28e7ed926a /LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh | |
parent | d9a584844a60542519d813b5dc1a62428f14a0ae (diff) |
Merge OculusSDK 0.3.2 Windows Source Code
Diffstat (limited to 'LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh')
-rw-r--r-- | LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh b/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh new file mode 100644 index 0000000..a98329b --- /dev/null +++ b/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh @@ -0,0 +1,6 @@ +float4 Color;
+
+float4 main() : SV_Target
+{
+ return Color;
+}
|