From f5c4671bfbad96bf346bd7e9a21fc4317b4959df Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 3 Dec 2022 17:00:20 +0530 Subject: Adds most of the tools --- .../plugins/Milkdrop2/data/blur_vs.fx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 musikcube_win32_with_milkdrop2_0.98.1/plugins/Milkdrop2/data/blur_vs.fx (limited to 'musikcube_win32_with_milkdrop2_0.98.1/plugins/Milkdrop2/data/blur_vs.fx') diff --git a/musikcube_win32_with_milkdrop2_0.98.1/plugins/Milkdrop2/data/blur_vs.fx b/musikcube_win32_with_milkdrop2_0.98.1/plugins/Milkdrop2/data/blur_vs.fx new file mode 100644 index 0000000..490ad54 --- /dev/null +++ b/musikcube_win32_with_milkdrop2_0.98.1/plugins/Milkdrop2/data/blur_vs.fx @@ -0,0 +1,10 @@ +void VS( float3 vPosIn : POSITION, + float4 vDiffuseIn : COLOR, + float4 uv1 : TEXCOORD0, // .xy = warped UVs, .zw = orig UVs + float2 uv2 : TEXCOORD1, // .x = rad, .y = ang + out float4 vPosProj : POSITION, + out float2 uv : TEXCOORD0 ) +{ + vPosProj = float4(vPosIn.xy,1,1); + uv = uv1.xy; +} -- cgit v1.2.3